diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-24 19:54:30 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-24 19:54:30 +0000 |
commit | f511881bed1a46d2110f36e6b60e28f2b306b935 (patch) | |
tree | 58d69490432a1176a56ee2c0bdd6dd8016162e46 /ppapi/proxy/ppb_instance_proxy.h | |
parent | 5d67452f563f0d6eddc932dd67f7e84579b77831 (diff) | |
download | chromium_src-f511881bed1a46d2110f36e6b60e28f2b306b935.zip chromium_src-f511881bed1a46d2110f36e6b60e28f2b306b935.tar.gz chromium_src-f511881bed1a46d2110f36e6b60e28f2b306b935.tar.bz2 |
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
Diffstat (limited to 'ppapi/proxy/ppb_instance_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_instance_proxy.h | 3 |
1 files changed, 1 insertions, 2 deletions
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, |