Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Unified Diff: content/common/plugin_constants_win.cc

Issue 19844003: Remove webkit/plugins/npapi. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698