| Index: ppapi/thunk/ppb_gamepad_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_gamepad_thunk.cc b/ppapi/thunk/ppb_gamepad_thunk.cc
|
| index de2c8be04cf54f30dcd3ed82d82087d23f3e0abf..34386c6e503d9451f2a728d6c28a441026d340c9 100644
|
| --- a/ppapi/thunk/ppb_gamepad_thunk.cc
|
| +++ b/ppapi/thunk/ppb_gamepad_thunk.cc
|
| @@ -19,7 +19,7 @@ namespace {
|
| void SampleGamepads(PP_Instance instance, PP_GamepadsSampleData* data) {
|
| EnterInstanceAPI<PPB_Gamepad_API> enter(instance);
|
| if (enter.succeeded()) {
|
| - enter.functions()->Sample(data);
|
| + enter.functions()->Sample(instance, data);
|
| return;
|
| }
|
| // Failure, zero out.
|
|
|