Chromium Code Reviews| Index: ui/gfx/native_widget_types.h |
| =================================================================== |
| --- ui/gfx/native_widget_types.h (revision 88518) |
| +++ ui/gfx/native_widget_types.h (working copy) |
| @@ -39,6 +39,7 @@ |
| #if defined(OS_WIN) |
| #include <windows.h> // NOLINT |
| typedef struct HFONT__* HFONT; |
| +struct IAccessible; |
|
Chris Guillory
2011/06/10 19:10:09
Nit: We don't want to include oleacc.h for this de
dmazzoni
2011/06/10 22:38:40
I think this is better, because hundreds of files
|
| #elif defined(OS_MACOSX) |
| struct CGContext; |
| #ifdef __OBJC__ |
| @@ -76,6 +77,7 @@ |
| typedef HCURSOR NativeCursor; |
| typedef HMENU NativeMenu; |
| typedef HRGN NativeRegion; |
| +typedef IAccessible* NativeAccessibleView; |
| #elif defined(OS_MACOSX) |
| typedef NSFont* NativeFont; |
| typedef NSView* NativeView; |
| @@ -84,6 +86,7 @@ |
| typedef CGContext* NativeDrawingContext; |
| typedef void* NativeCursor; |
| typedef void* NativeMenu; |
| +typedef void* NativeAccessibleView; |
| #elif defined(USE_X11) |
| typedef PangoFontDescription* NativeFont; |
| typedef GtkWidget* NativeView; |
| @@ -93,6 +96,7 @@ |
| typedef GdkCursor* NativeCursor; |
| typedef GtkWidget* NativeMenu; |
| typedef GdkRegion* NativeRegion; |
| +typedef void* NativeAccessibleView; |
| #endif |
| #if defined(OS_MACOSX) |