From f511881bed1a46d2110f36e6b60e28f2b306b935 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Fri, 24 Aug 2012 19:54:30 +0000 Subject: Add a skeleton gamepad resource. This implements the skeleton of the gamepad resource for the IPC proxy. It is not actually hooked up. Hooking it up will require moving some gamepad lock code to a shared location. This also hooks up the browser message routing for implementing resource hosts in the browser process. BUG= Review URL: https://chromiumcodereview.appspot.com/10824272 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153265 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/proxy/ppb_instance_proxy.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ppapi/proxy/ppb_instance_proxy.h') diff --git a/ppapi/proxy/ppb_instance_proxy.h b/ppapi/proxy/ppb_instance_proxy.h index 9da6659..b2503a4 100644 --- a/ppapi/proxy/ppb_instance_proxy.h +++ b/ppapi/proxy/ppb_instance_proxy.h @@ -69,8 +69,7 @@ class PPB_Instance_Proxy : public InterfaceProxy, virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) OVERRIDE; virtual thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; - virtual void SampleGamepads(PP_Instance instance, - PP_GamepadsSampleData* data) OVERRIDE; + virtual thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) OVERRIDE; virtual int32_t RequestInputEvents(PP_Instance instance, uint32_t event_classes) OVERRIDE; virtual int32_t RequestFilteringInputEvents(PP_Instance instance, -- cgit v1.1