Changeset 139196 in webkit


Ignore:
Timestamp:
Jan 9, 2013 9:00:45 AM (11 years ago)
Author:
Hugo Parente Lima
Message:

Regression(r138681) : Add HAVE(ACCESSIBILITY) guard to atk files, fix for a fix.
https://bugs.webkit.org/show_bug.cgi?id=106448

Reviewed by Gyuyoung Kim.

Some atk files don't use HAVE(ACCESSIBILITY). It might make build errors when
the macro isn't enabled.

  • accessibility/atk/WebKitAccessibleHyperlink.h:
  • accessibility/atk/WebKitAccessibleInterfaceAction.h:
  • accessibility/atk/WebKitAccessibleInterfaceComponent.h:
  • accessibility/atk/WebKitAccessibleInterfaceHypertext.h:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r139195 r139196  
     12013-01-09  Hugo Parente Lima  <hugo.lima@openbossa.org>
     2
     3        Regression(r138681) : Add HAVE(ACCESSIBILITY) guard to atk files, fix for a fix.
     4        https://bugs.webkit.org/show_bug.cgi?id=106448
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Some atk files don't use HAVE(ACCESSIBILITY). It might make build errors when
     9        the macro isn't enabled.
     10
     11        * accessibility/atk/WebKitAccessibleHyperlink.h:
     12        * accessibility/atk/WebKitAccessibleInterfaceAction.h:
     13        * accessibility/atk/WebKitAccessibleInterfaceComponent.h:
     14        * accessibility/atk/WebKitAccessibleInterfaceHypertext.h:
     15
    1162013-01-09  Chris Fleizach  <cfleizach@apple.com>
    217
  • trunk/Source/WebCore/accessibility/atk/WebKitAccessibleHyperlink.h

    r139159 r139196  
    2121#define WebKitAccessibleHyperlink_h
    2222
     23#if HAVE(ACCESSIBILITY)
     24
    2325#include <atk/atk.h>
    24 
    25 #if HAVE(ACCESSIBILITY)
    2626
    2727namespace WebCore {
  • trunk/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceAction.h

    r139159 r139196  
    2323#define WebKitAccessibleInterfaceAction_h
    2424
     25#if HAVE(ACCESSIBILITY)
     26
    2527#include <atk/atk.h>
    26 
    27 #if HAVE(ACCESSIBILITY)
    2828
    2929void webkitAccessibleActionInterfaceInit(AtkActionIface*);
  • trunk/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceComponent.h

    r134939 r139196  
    2323#define WebKitAccessibleInterfaceComponent_h
    2424
     25#if HAVE(ACCESSIBILITY)
     26
    2527#include <atk/atk.h>
    2628
    2729void webkitAccessibleComponentInterfaceInit(AtkComponentIface*);
    2830
     31#endif
     32
    2933#endif // WebKitAccessibleInterfaceComponent_h
  • trunk/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceHypertext.h

    r134939 r139196  
    2121#define WebKitAccessibleInterfaceHypertext_h
    2222
     23#if HAVE(ACCESSIBILITY)
     24
    2325#include <atk/atk.h>
    2426
    2527void webkitAccessibleHypertextInterfaceInit(AtkHypertextIface*);
    2628
     29#endif
     30
    2731#endif // WebKitAccessibleInterfaceHypertext_h
Note: See TracChangeset for help on using the changeset viewer.