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

Unified Diff: webkit/glue/plugins/plugin_constants_win.h

Issue 18637: More speedup of scrolling when many windowed plugins in a page. Scrolling is... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 'spell Created 11 years, 11 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: webkit/glue/plugins/plugin_constants_win.h
===================================================================
--- webkit/glue/plugins/plugin_constants_win.h (revision 8294)
+++ webkit/glue/plugins/plugin_constants_win.h (working copy)
@@ -20,4 +20,17 @@
#define kActiveXShimFileNameForMediaPlayer \
L"Microsoft\xAE Windows Media Player Firefox Plugin"
+
+// The window class name for a plugin window.
+#define kNativeWindowClassName L"NativeWindowClass"
+
+// The name of the window class name for the wrapper HWND around the actual
+// plugin window that's used when running in multi-process mode. This window
+// is created on the browser UI thread.
+#define kWrapperNativeWindowClassName L"WrapperNativeWindowClass"
+
+// The name of the custom window message that the browser uses to tell the
+// plugin process to paint a window.
+#define kPaintMessageName L"Chrome_CustomPaint"
+
#endif // WEBKIT_GLUE_PLUGIN_PLUGIN_LIST_H_

Powered by Google App Engine
This is Rietveld 408576698