Changeset 116385 in webkit


Ignore:
Timestamp:
May 7, 2012 7:47:13 PM (12 years ago)
Author:
abarth@webkit.org
Message:

[Chromium] Android wishes to use an empty implementation if AXObjectCache
https://bugs.webkit.org/show_bug.cgi?id=85842

Reviewed by Eric Seidel.

Source/WebCore:

Add proper HAVE(ACCESSIBILITY) ifdefs so that Chromium builds without
accessibility.

  • accessibility/chromium/AXObjectCacheChromium.cpp:
  • accessibility/chromium/AccessibilityObjectChromium.cpp:

Source/WTF:

Disable accessibility on OS(ANDROID) for PLATFORM(CHROMIUM).

  • wtf/Platform.h:
Location:
trunk/Source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r116157 r116385  
     12012-05-07  Adam Barth  <abarth@webkit.org>
     2
     3        [Chromium] Android wishes to use an empty implementation if AXObjectCache
     4        https://bugs.webkit.org/show_bug.cgi?id=85842
     5
     6        Reviewed by Eric Seidel.
     7
     8        Disable accessibility on OS(ANDROID) for PLATFORM(CHROMIUM).
     9
     10        * wtf/Platform.h:
     11
    1122012-05-04  Jeff Rogers  <jrogers@rim.com>
    213
  • trunk/Source/WTF/wtf/Platform.h

    r115951 r116385  
    652652
    653653#if !defined(HAVE_ACCESSIBILITY)
    654 #if PLATFORM(IOS) || PLATFORM(MAC) || PLATFORM(WIN) || PLATFORM(GTK) || PLATFORM(CHROMIUM)
     654#if PLATFORM(IOS) || PLATFORM(MAC) || PLATFORM(WIN) || PLATFORM(GTK) || (PLATFORM(CHROMIUM) && !OS(ANDROID))
    655655#define HAVE_ACCESSIBILITY 1
    656656#endif
  • trunk/Source/WebCore/ChangeLog

    r116384 r116385  
     12012-05-07  Adam Barth  <abarth@webkit.org>
     2
     3        [Chromium] Android wishes to use an empty implementation if AXObjectCache
     4        https://bugs.webkit.org/show_bug.cgi?id=85842
     5
     6        Reviewed by Eric Seidel.
     7
     8        Add proper HAVE(ACCESSIBILITY) ifdefs so that Chromium builds without
     9        accessibility.
     10
     11        * accessibility/chromium/AXObjectCacheChromium.cpp:
     12        * accessibility/chromium/AccessibilityObjectChromium.cpp:
     13
    1142012-05-07  Greg Billock  <gbillock@google.com>
    215
  • trunk/Source/WebCore/accessibility/chromium/AXObjectCacheChromium.cpp

    r102062 r116385  
    2626
    2727#include "config.h"
     28
     29#if HAVE(ACCESSIBILITY)
     30
    2831#include "AXObjectCache.h"
    2932
     
    136139
    137140} // namespace WebCore
     141
     142#endif // HAVE(ACCESSIBILITY)
  • trunk/Source/WebCore/accessibility/chromium/AccessibilityObjectChromium.cpp

    r116125 r116385  
    2626
    2727#include "config.h"
     28
     29#if HAVE(ACCESSIBILITY)
     30
    2831#include "AccessibilityObject.h"
    2932
     
    4447
    4548} // namespace WebCore
     49
     50#endif // HAVE(ACCESSIBILITY)
Note: See TracChangeset for help on using the changeset viewer.