diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-05 01:06:46 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-05 01:06:46 +0000 |
commit | e6a1b4ee5411faaf44a95204299e9738bffc8a80 (patch) | |
tree | 068d777fdaadeb9f1574b459c4b64fdf4ee51816 /ppapi/thunk/ppb_network_list_api.h | |
parent | 47ebce481df17bd82c0966403fc26a424beea077 (diff) | |
download | chromium_src-e6a1b4ee5411faaf44a95204299e9738bffc8a80.zip chromium_src-e6a1b4ee5411faaf44a95204299e9738bffc8a80.tar.gz chromium_src-e6a1b4ee5411faaf44a95204299e9738bffc8a80.tar.bz2 |
Use PP_ArrayOutput and PPB_NetAddress in PPB_NetworkList_Private..
PPB_NetworkList_Private was implemented before PP_ArrayOutput and PPB_NetAddress
was added. Refactor GetIPAddress() to use these new types.
Also removed in-process support because PPB_NetAddress doesn't support in-process mode.
BUG=281781
TBR=piman@chromium.org (trivial changes in content_renderer.gypi)
Review URL: https://chromiumcodereview.appspot.com/23806003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221324 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk/ppb_network_list_api.h')
-rw-r--r-- | ppapi/thunk/ppb_network_list_api.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ppapi/thunk/ppb_network_list_api.h b/ppapi/thunk/ppb_network_list_api.h index bbadded..b8fb9a3 100644 --- a/ppapi/thunk/ppb_network_list_api.h +++ b/ppapi/thunk/ppb_network_list_api.h @@ -31,8 +31,7 @@ class PPAPI_THUNK_EXPORT PPB_NetworkList_API { virtual PP_NetworkListType_Private GetType(uint32_t index) = 0; virtual PP_NetworkListState_Private GetState(uint32_t index) = 0; virtual int32_t GetIpAddresses(uint32_t index, - PP_NetAddress_Private addresses[], - uint32_t count) = 0; + const PP_ArrayOutput& output) = 0; virtual PP_Var GetDisplayName(uint32_t index) = 0; virtual uint32_t GetMTU(uint32_t index) = 0; }; |