diff options
Diffstat (limited to 'app/gfx')
-rw-r--r-- | app/gfx/native_widget_types.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/gfx/native_widget_types.h b/app/gfx/native_widget_types.h index d116d9c..0153194 100644 --- a/app/gfx/native_widget_types.h +++ b/app/gfx/native_widget_types.h @@ -129,13 +129,16 @@ NativeViewId IdFromNativeView(NativeView view); // 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 |