| Index: app/gfx/native_widget_types.h
|
| ===================================================================
|
| --- app/gfx/native_widget_types.h (revision 28691)
|
| +++ app/gfx/native_widget_types.h (working copy)
|
| @@ -129,13 +129,16 @@
|
| // window id.
|
| #if defined(OS_WIN)
|
| typedef HWND PluginWindowHandle;
|
| + const PluginWindowHandle kNullPluginWindow = NULL;
|
| #elif defined(USE_X11)
|
| typedef unsigned long PluginWindowHandle;
|
| + const PluginWindowHandle kNullPluginWindow = 0;
|
| #else
|
| // On OS X we don't have windowed plugins.
|
| // We use a NULL/0 PluginWindowHandle in shared code to indicate there
|
| // is no window present, so mirror that behavior here.
|
| typedef bool PluginWindowHandle;
|
| + const PluginWindowHandle kNullPluginWindow = false;
|
| #endif
|
|
|
| } // namespace gfx
|
|
|