diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 20:24:23 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 20:24:23 +0000 |
commit | 6a9e6c53b9f33f9164f92a53e95ff7cd98c65df1 (patch) | |
tree | 27bc7359fa4f6c64273790cd478807450abe794f /ppapi/api | |
parent | 4631bf504467a4d3e545ef6160ebf4e6167962a6 (diff) | |
download | chromium_src-6a9e6c53b9f33f9164f92a53e95ff7cd98c65df1.zip chromium_src-6a9e6c53b9f33f9164f92a53e95ff7cd98c65df1.tar.gz chromium_src-6a9e6c53b9f33f9164f92a53e95ff7cd98c65df1.tar.bz2 |
Pepper: Autogenerate thunk for PPB_NetworkList_Private.
BUG=
Review URL: https://chromiumcodereview.appspot.com/13353003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192131 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r-- | ppapi/api/private/ppb_network_list_private.idl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ppapi/api/private/ppb_network_list_private.idl b/ppapi/api/private/ppb_network_list_private.idl index 540aa1d..8ec330f 100644 --- a/ppapi/api/private/ppb_network_list_private.idl +++ b/ppapi/api/private/ppb_network_list_private.idl @@ -7,6 +7,8 @@ * This file defines the <code>PPB_NetworkList_Private</code> interface. */ +[generate_thunk] + label Chrome { M19 = 0.2 }; @@ -90,6 +92,7 @@ interface PPB_NetworkList_Private { * @return Returns type of the network interface with the specified * <code>index</code>. */ + [on_failure=PP_NETWORKLIST_UNKNOWN] PP_NetworkListType_Private GetType([in] PP_Resource resource, [in] uint32_t index); @@ -97,6 +100,7 @@ interface PPB_NetworkList_Private { * @return Returns current state of the network interface with the * specified <code>index</code>. */ + [on_failure=PP_NETWORKLIST_DOWN] PP_NetworkListState_Private GetState([in] PP_Resource resource, [in] uint32_t index); |