OLD | NEW |
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/ppb_network_list.h" |
11 #include "ppapi/thunk/ppapi_thunk_export.h" | 11 #include "ppapi/thunk/ppapi_thunk_export.h" |
12 | 12 |
13 namespace ppapi { | 13 namespace ppapi { |
14 namespace thunk { | 14 namespace thunk { |
15 | 15 |
16 class PPAPI_THUNK_EXPORT PPB_NetworkList_API { | 16 class PPAPI_THUNK_EXPORT PPB_NetworkList_API { |
17 public: | 17 public: |
18 virtual ~PPB_NetworkList_API() {} | 18 virtual ~PPB_NetworkList_API() {} |
19 | 19 |
20 // Private API | 20 // Private API |
21 virtual uint32_t GetCount() = 0; | 21 virtual uint32_t GetCount() = 0; |
22 virtual PP_Var GetName(uint32_t index) = 0; | 22 virtual PP_Var GetName(uint32_t index) = 0; |
23 virtual PP_NetworkListType_Private GetType(uint32_t index) = 0; | 23 virtual PP_NetworkList_Type GetType(uint32_t index) = 0; |
24 virtual PP_NetworkListState_Private GetState(uint32_t index) = 0; | 24 virtual PP_NetworkList_State GetState(uint32_t index) = 0; |
25 virtual int32_t GetIpAddresses(uint32_t index, | 25 virtual int32_t GetIpAddresses(uint32_t index, |
26 const PP_ArrayOutput& output) = 0; | 26 const PP_ArrayOutput& output) = 0; |
27 virtual PP_Var GetDisplayName(uint32_t index) = 0; | 27 virtual PP_Var GetDisplayName(uint32_t index) = 0; |
28 virtual uint32_t GetMTU(uint32_t index) = 0; | 28 virtual uint32_t GetMTU(uint32_t index) = 0; |
29 }; | 29 }; |
30 | 30 |
31 } // namespace thunk | 31 } // namespace thunk |
32 } // namespace ppapi | 32 } // namespace ppapi |
33 | 33 |
34 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_API_H_ | 34 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_API_H_ |
OLD | NEW |