Chromium Code Reviews| Index: content/common/plugin_constants_win.cc |
| =================================================================== |
| --- content/common/plugin_constants_win.cc (revision 212595) |
| +++ content/common/plugin_constants_win.cc (working copy) |
| @@ -6,7 +6,11 @@ |
| namespace content { |
| +const char16 kNativeWindowClassName[] = L"NativeWindowClass"; |
| const char16 kWrapperNativeWindowClassName[] = L"WrapperNativeWindowClass"; |
| +const char16 kPluginNameAtomProperty[] = L"PluginNameAtom"; |
| +const char16 kPluginVersionAtomProperty[] = L"PluginVersionAtom"; |
| +const char16 kDummyActivationWindowName[] = L"DummyWindowForActivation"; |
| const char16 kPaintMessageName[] = L"Chrome_CustomPaintil"; |
| const char16 kRegistryMozillaPlugins[] = L"SOFTWARE\\MozillaPlugins"; |
| const char16 kMozillaActiveXPlugin[] = L"npmozax.dll"; |
| @@ -22,4 +26,8 @@ |
| const char16 kJavaPlugin2[] = L"npdeploytk.dll"; |
| const char kGPUPluginMimeType[] = "application/vnd.google.chrome.gpu-plugin"; |
| +HWND GetDefaultWindowParent() { |
|
scottmg
2013/07/19 20:25:01
this seems a bit sketchy, how about just plugin_ut
jam
2013/07/19 20:35:21
yeah i agree it doesn't look nice. however i'm a b
|
| + return GetDesktopWindow(); |
| +} |
| + |
| } // namespace content |