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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc

Issue 7715021: Add movement information to PPB_MouseInputEvent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 4 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: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
index cb4772571a607b11de9c466ee87d2bd38a93895b..1c1140c06a8f93b1eb812b7dd4ec0e8c8a176b8e 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
@@ -67,8 +67,10 @@ InterfaceMapElement interface_map[] = {
PluginInputEvent::GetKeyboardInterface(), true },
{ PPB_MEMORY_DEV_INTERFACE, PluginMemory::GetInterface(), true },
{ PPB_MESSAGING_INTERFACE, PluginMessaging::GetInterface(), true },
- { PPB_MOUSE_INPUT_EVENT_INTERFACE, PluginInputEvent::GetMouseInterface(),
- true },
+ { PPB_MOUSE_INPUT_EVENT_INTERFACE_1_0,
+ PluginInputEvent::GetMouseInterface1_0(), true },
+ { PPB_MOUSE_INPUT_EVENT_INTERFACE_1_1,
+ PluginInputEvent::GetMouseInterface1_1(), true },
{ PPB_OPENGLES2_DEV_INTERFACE, PluginGraphics3D::GetOpenGLESInterface(),
true },
{ PPB_PDF_INTERFACE, PluginPDF::GetInterface(), true },

Powered by Google App Engine
This is Rietveld 408576698