Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: ppapi/thunk/ppb_network_list_api.h

Issue 23806003: Use PP_ArrayOutput and PPB_NetAddress in PPB_NetworkList_Private.. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_THUNK_PPB_NETWORK_LIST_API_H_ 5 #ifndef PPAPI_THUNK_PPB_NETWORK_LIST_API_H_
6 #define PPAPI_THUNK_PPB_NETWORK_LIST_API_H_ 6 #define PPAPI_THUNK_PPB_NETWORK_LIST_API_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "ppapi/c/private/ppb_network_list_private.h" 10 #include "ppapi/c/private/ppb_network_list_private.h"
(...skipping 13 matching lines...) Expand all
24 // This function is not exposed through the C API, but returns the 24 // This function is not exposed through the C API, but returns the
25 // internal data for easy proxying. 25 // internal data for easy proxying.
26 virtual const NetworkList& GetNetworkListData() const = 0; 26 virtual const NetworkList& GetNetworkListData() const = 0;
27 27
28 // Private API 28 // Private API
29 virtual uint32_t GetCount() = 0; 29 virtual uint32_t GetCount() = 0;
30 virtual PP_Var GetName(uint32_t index) = 0; 30 virtual PP_Var GetName(uint32_t index) = 0;
31 virtual PP_NetworkListType_Private GetType(uint32_t index) = 0; 31 virtual PP_NetworkListType_Private GetType(uint32_t index) = 0;
32 virtual PP_NetworkListState_Private GetState(uint32_t index) = 0; 32 virtual PP_NetworkListState_Private GetState(uint32_t index) = 0;
33 virtual int32_t GetIpAddresses(uint32_t index, 33 virtual int32_t GetIpAddresses(uint32_t index,
34 PP_NetAddress_Private addresses[], 34 const PP_ArrayOutput& output) = 0;
35 uint32_t count) = 0;
36 virtual PP_Var GetDisplayName(uint32_t index) = 0; 35 virtual PP_Var GetDisplayName(uint32_t index) = 0;
37 virtual uint32_t GetMTU(uint32_t index) = 0; 36 virtual uint32_t GetMTU(uint32_t index) = 0;
38 }; 37 };
39 38
40 } // namespace thunk 39 } // namespace thunk
41 } // namespace ppapi 40 } // namespace ppapi
42 41
43 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_API_H_ 42 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_API_H_
OLDNEW
« no previous file with comments | « ppapi/thunk/interfaces_ppb_private_no_permissions.h ('k') | ppapi/thunk/ppb_network_list_private_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698