cc: Added inline to Tile::IsReadyToDraw
[chromium-blink-merge.git] / ppapi / thunk / ppb_network_list_api.h
blobbbadded6f7545e1f14b30838730436a8f5241f61
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
3 // found in the LICENSE file.
5 #ifndef PPAPI_THUNK_PPB_NETWORK_LIST_API_H_
6 #define PPAPI_THUNK_PPB_NETWORK_LIST_API_H_
8 #include <vector>
10 #include "ppapi/c/private/ppb_network_list_private.h"
11 #include "ppapi/thunk/ppapi_thunk_export.h"
13 namespace ppapi {
15 struct NetworkInfo;
16 typedef std::vector<NetworkInfo> NetworkList;
18 namespace thunk {
20 class PPAPI_THUNK_EXPORT PPB_NetworkList_API {
21 public:
22 virtual ~PPB_NetworkList_API() {}
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;
28 // Private API
29 virtual uint32_t GetCount() = 0;
30 virtual PP_Var GetName(uint32_t index) = 0;
31 virtual PP_NetworkListType_Private GetType(uint32_t index) = 0;
32 virtual PP_NetworkListState_Private GetState(uint32_t index) = 0;
33 virtual int32_t GetIpAddresses(uint32_t index,
34 PP_NetAddress_Private addresses[],
35 uint32_t count) = 0;
36 virtual PP_Var GetDisplayName(uint32_t index) = 0;
37 virtual uint32_t GetMTU(uint32_t index) = 0;
40 } // namespace thunk
41 } // namespace ppapi
43 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_API_H_