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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_input_event_rpc_server.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_ppb_input_event_rpc_server.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_input_event_rpc_server.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_input_event_rpc_server.cc
index ab77f784d46ba9f83f30aba4b9c0c3c99d46ba42..a631c508ab0845aa239dd82ea1325d9685cdf7e7 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_input_event_rpc_server.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_input_event_rpc_server.cc
@@ -10,6 +10,7 @@
#include "native_client/src/shared/ppapi_proxy/object_serialize.h"
#include "native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h"
#include "native_client/src/shared/ppapi_proxy/utility.h"
+#include "ppapi/c/dev/ppb_input_event_dev.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/ppb_input_event.h"
@@ -88,8 +89,8 @@ void PpbInputEventRpcServer::PPB_InputEvent_CreateMouseInputEvent(
rpc->result = NACL_SRPC_RESULT_APP_ERROR;
*resource_id = 0;
// TODO(dmichael): Add DebugPrintf.
- const PPB_MouseInputEvent* input_event_if =
- ppapi_proxy::PPBMouseInputEventInterface();
+ const PPB_MouseInputEvent_Dev* input_event_if =
+ ppapi_proxy::PPBMouseInputEventDevInterface();
if (!input_event_if) {
return;
}

Powered by Google App Engine
This is Rietveld 408576698