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

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

Issue 7834007: Add comment to PPB_MouseInputEvent version 1.1 that GetMovement hasn't been supported. (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/browser_globals.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
index 566dcf6fafefee68346e3528c08d6341ac7ff8a9..63e183fae7272f1fad8ed3feb850d0ab995daadc 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
@@ -278,6 +278,13 @@ const PPB_MouseInputEvent* PPBMouseInputEventInterface() {
return ppb;
}
+const PPB_MouseInputEvent_Dev* PPBMouseInputEventDevInterface() {
+ static const PPB_MouseInputEvent_Dev* ppb =
+ static_cast<const PPB_MouseInputEvent_Dev*>(
+ GetBrowserInterfaceSafe(PPB_MOUSE_INPUT_EVENT_DEV_INTERFACE));
+ return ppb;
+}
+
const PPB_URLLoader* PPBURLLoaderInterface() {
static const PPB_URLLoader* ppb =
static_cast<const PPB_URLLoader*>(

Powered by Google App Engine
This is Rietveld 408576698