diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-07 16:53:16 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-07 16:53:16 +0000 |
commit | d5cc7198356bdfa3945e7a61f964d8c9ac77070f (patch) | |
tree | 61bb3b104e2ba6acaba0ddc062b5fa263a8ab697 /ppapi/proxy | |
parent | d815b6b8043a7114cbb0bf97beba8778c08d7e6f (diff) | |
download | chromium_src-d5cc7198356bdfa3945e7a61f964d8c9ac77070f.zip chromium_src-d5cc7198356bdfa3945e7a61f964d8c9ac77070f.tar.gz chromium_src-d5cc7198356bdfa3945e7a61f964d8c9ac77070f.tar.bz2 |
Rename NaCl/pepper gamepad interface from _dev to stable
Following API review, and revisions here:
https://chromiumcodereview.appspot.com/9405033/. This change is just the
mechanical renames and bump of version number to 1.0.
BUG=112879, 115119
Review URL: http://codereview.chromium.org/9566022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125399 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r-- | ppapi/proxy/ppb_instance_proxy.cc | 2 | ||||
-rw-r--r-- | ppapi/proxy/ppb_instance_proxy.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/ppb_instance_proxy.cc b/ppapi/proxy/ppb_instance_proxy.cc index 8842783..01977cc 100644 --- a/ppapi/proxy/ppb_instance_proxy.cc +++ b/ppapi/proxy/ppb_instance_proxy.cc @@ -288,7 +288,7 @@ PP_Bool PPB_Instance_Proxy::FlashGetScreenSize(PP_Instance instance, } void PPB_Instance_Proxy::SampleGamepads(PP_Instance instance, - PP_GamepadsSampleData_Dev* data) { + PP_GamepadsSampleData* data) { NOTIMPLEMENTED(); } diff --git a/ppapi/proxy/ppb_instance_proxy.h b/ppapi/proxy/ppb_instance_proxy.h index 60661f7..edb6a95 100644 --- a/ppapi/proxy/ppb_instance_proxy.h +++ b/ppapi/proxy/ppb_instance_proxy.h @@ -73,7 +73,7 @@ class PPB_Instance_Proxy : public InterfaceProxy, virtual PP_Bool FlashGetScreenSize(PP_Instance instance, PP_Size* size) OVERRIDE; virtual void SampleGamepads(PP_Instance instance, - PP_GamepadsSampleData_Dev* data) OVERRIDE; + PP_GamepadsSampleData* data) OVERRIDE; virtual int32_t RequestInputEvents(PP_Instance instance, uint32_t event_classes) OVERRIDE; virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |