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

Unified Diff: ppapi/thunk/ppb_gamepad_thunk.cc

Issue 9405033: Revise gamepad interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 10 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/thunk/ppb_gamepad_thunk.cc
diff --git a/ppapi/thunk/ppb_gamepad_thunk.cc b/ppapi/thunk/ppb_gamepad_thunk.cc
index 9bf21226f4da5c43c4bc0a2fce2ba101681e3a04..376faa4623e2034eeccfa540ad6677151bf2cb1a 100644
--- a/ppapi/thunk/ppb_gamepad_thunk.cc
+++ b/ppapi/thunk/ppb_gamepad_thunk.cc
@@ -13,7 +13,7 @@ namespace thunk {
namespace {
-void SampleGamepads(PP_Instance instance, PP_GamepadsData_Dev* data) {
+void SampleGamepads(PP_Instance instance, PP_GamepadsSampleData_Dev* data) {
EnterFunction<PPB_Instance_FunctionAPI> enter(instance, true);
if (enter.failed())
return;
@@ -26,7 +26,7 @@ const PPB_Gamepad_Dev g_ppb_gamepad_thunk = {
} // namespace
-const PPB_Gamepad_Dev* GetPPB_Gamepad_Dev_0_1_Thunk() {
+const PPB_Gamepad_Dev* GetPPB_Gamepad_Dev_0_2_Thunk() {
return &g_ppb_gamepad_thunk;
}

Powered by Google App Engine
This is Rietveld 408576698