| Index: app/gfx/native_widget_types.h
|
| ===================================================================
|
| --- app/gfx/native_widget_types.h (revision 30929)
|
| +++ app/gfx/native_widget_types.h (working copy)
|
| @@ -51,6 +51,7 @@
|
| typedef struct _GtkWidget GtkWidget;
|
| typedef struct _GtkWindow GtkWindow;
|
| typedef struct _cairo cairo_t;
|
| +typedef struct _GdkRegion GdkRegion;
|
| #endif
|
|
|
| namespace gfx {
|
| @@ -62,6 +63,7 @@
|
| typedef HDC NativeDrawingContext;
|
| typedef HCURSOR NativeCursor;
|
| typedef HMENU NativeMenu;
|
| +typedef HRGN NativeRegion;
|
| #elif defined(OS_MACOSX)
|
| typedef NSView* NativeView;
|
| typedef NSWindow* NativeWindow;
|
| @@ -76,6 +78,7 @@
|
| typedef cairo_t* NativeDrawingContext;
|
| typedef GdkCursor* NativeCursor;
|
| typedef GtkWidget* NativeMenu;
|
| +typedef GdkRegion* NativeRegion;
|
| #endif
|
|
|
| // Note: for test_shell we're packing a pointer into the NativeViewId. So, if
|
|
|
|
|