| Index: chrome/browser/renderer_host/render_widget_host_view_win.cc
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_widget_host_view_win.cc (revision 78053)
|
| +++ chrome/browser/renderer_host/render_widget_host_view_win.cc (working copy)
|
| @@ -13,6 +13,7 @@
|
| #include "base/scoped_comptr_win.h"
|
| #include "base/threading/thread.h"
|
| #include "base/win/scoped_gdi_object.h"
|
| +#include "base/win/wrapped_window_proc.h"
|
| #include "chrome/browser/accessibility/browser_accessibility_manager.h"
|
| #include "chrome/browser/accessibility/browser_accessibility_state.h"
|
| #include "chrome/browser/accessibility/browser_accessibility_win.h"
|
| @@ -502,7 +503,7 @@
|
| WNDCLASSEX wcex;
|
| wcex.cbSize = sizeof(WNDCLASSEX);
|
| wcex.style = CS_DBLCLKS;
|
| - wcex.lpfnWndProc = PluginWrapperWindowProc;
|
| + wcex.lpfnWndProc = base::win::WrappedWindowProc<PluginWrapperWindowProc>;
|
| wcex.cbClsExtra = 0;
|
| wcex.cbWndExtra = 0;
|
| wcex.hInstance = GetModuleHandle(NULL);
|
| @@ -1583,7 +1584,8 @@
|
| WNDCLASSEX wcex;
|
| wcex.cbSize = sizeof(WNDCLASSEX);
|
| wcex.style = 0;
|
| - wcex.lpfnWndProc = CompositorHostWindowProc;
|
| + wcex.lpfnWndProc =
|
| + base::win::WrappedWindowProc<CompositorHostWindowProc>;
|
| wcex.cbClsExtra = 0;
|
| wcex.cbWndExtra = 0;
|
| wcex.hInstance = GetModuleHandle(NULL);
|
|
|