diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-16 21:02:16 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-16 21:02:16 +0000 |
commit | a388796bf49a8f8b87a6a8bdfb0c3a87fbe81e3a (patch) | |
tree | a6288cc2100ad8a569df7ef98805e22a830e0069 /ppapi/api/ppb_gamepad.idl | |
parent | b942f1de3e1dee7a766f375f256eb6bf1680880b (diff) | |
download | chromium_src-a388796bf49a8f8b87a6a8bdfb0c3a87fbe81e3a.zip chromium_src-a388796bf49a8f8b87a6a8bdfb0c3a87fbe81e3a.tar.gz chromium_src-a388796bf49a8f8b87a6a8bdfb0c3a87fbe81e3a.tar.bz2 |
Pepper: Autogenerate thunk for PPB_TrueTypeFont.
This makes a few changes to IDL annotations:
* 'singleton_resource' is now 'singleton' and can be per-function or per-interface.
* There is a new 'API' annotation that describes when a specific API should be used for a function.
* There is a 'thunk_include' annotation for when a header file must be included in the thunk output, but we can't guess it.
Review URL: https://codereview.chromium.org/13820003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194445 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/ppb_gamepad.idl')
-rw-r--r-- | ppapi/api/ppb_gamepad.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/api/ppb_gamepad.idl b/ppapi/api/ppb_gamepad.idl index 6403e34..c3d0652 100644 --- a/ppapi/api/ppb_gamepad.idl +++ b/ppapi/api/ppb_gamepad.idl @@ -85,10 +85,10 @@ struct PP_GamepadsSampleData { * The <code>PPB_Gamepad</code> interface allows retrieving data from * gamepad/joystick devices that are connected to the system. */ -[version=1.0, macro="PPB_GAMEPAD_INTERFACE", singleton_resource] +[version=1.0, macro="PPB_GAMEPAD_INTERFACE", singleton] interface PPB_Gamepad { /** - * Samples the current state of the connected gamepads. + * Samples the current state of the available gamepads. */ void Sample( [in] PP_Instance instance, |