| 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_PRIVATE_API_H_ | 5 #ifndef PPAPI_THUNK_PPB_NETWORK_LIST_PRIVATE_API_H_ |
| 6 #define PPAPI_THUNK_PPB_NETWORK_LIST_PRIVATE_API_H_ | 6 #define PPAPI_THUNK_PPB_NETWORK_LIST_PRIVATE_API_H_ |
| 7 | 7 |
| 8 #include <vector> |
| 9 |
| 8 #include "ppapi/c/private/ppb_network_list_private.h" | 10 #include "ppapi/c/private/ppb_network_list_private.h" |
| 9 #include "ppapi/thunk/ppapi_thunk_export.h" | 11 #include "ppapi/thunk/ppapi_thunk_export.h" |
| 10 | 12 |
| 11 namespace ppapi { | 13 namespace ppapi { |
| 14 |
| 15 struct NetworkInfo; |
| 16 typedef std::vector<NetworkInfo> NetworkList; |
| 17 |
| 12 namespace thunk { | 18 namespace thunk { |
| 13 | 19 |
| 14 class PPAPI_THUNK_EXPORT PPB_NetworkList_Private_API { | 20 class PPAPI_THUNK_EXPORT PPB_NetworkList_Private_API { |
| 15 public: | 21 public: |
| 16 virtual ~PPB_NetworkList_Private_API() {} | 22 virtual ~PPB_NetworkList_Private_API() {} |
| 17 | 23 |
| 24 // This function is not exposed through the C API, but returns the |
| 25 // internal data for easy proxying. |
| 26 virtual const NetworkList& GetNetworkListData() const = 0; |
| 27 |
| 18 virtual uint32_t GetCount() = 0; | 28 virtual uint32_t GetCount() = 0; |
| 19 virtual PP_Var GetName(uint32_t index) = 0; | 29 virtual PP_Var GetName(uint32_t index) = 0; |
| 20 virtual PP_NetworkListType_Private GetType(uint32_t index) = 0; | 30 virtual PP_NetworkListType_Private GetType(uint32_t index) = 0; |
| 21 virtual PP_NetworkListState_Private GetState(uint32_t index) = 0; | 31 virtual PP_NetworkListState_Private GetState(uint32_t index) = 0; |
| 22 virtual int32_t GetIpAddresses(uint32_t index, | 32 virtual int32_t GetIpAddresses(uint32_t index, |
| 23 PP_NetAddress_Private addresses[], | 33 PP_NetAddress_Private addresses[], |
| 24 uint32_t count) = 0; | 34 uint32_t count) = 0; |
| 25 virtual PP_Var GetDisplayName(uint32_t index) = 0; | 35 virtual PP_Var GetDisplayName(uint32_t index) = 0; |
| 26 virtual uint32_t GetMTU(uint32_t index) = 0; | 36 virtual uint32_t GetMTU(uint32_t index) = 0; |
| 27 }; | 37 }; |
| 28 | 38 |
| 29 } // namespace thunk | 39 } // namespace thunk |
| 30 } // namespace ppapi | 40 } // namespace ppapi |
| 31 | 41 |
| 32 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_PRIVATE_API_H_ | 42 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_PRIVATE_API_H_ |
| OLD | NEW |