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

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

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years 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
« no previous file with comments | « ppapi/thunk/ppb_mouse_lock_thunk.cc ('k') | ppapi/thunk/ppb_network_list_thunk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <stdint.h>
9
8 #include <vector> 10 #include <vector>
9 11
10 #include "ppapi/c/ppb_network_list.h" 12 #include "ppapi/c/ppb_network_list.h"
11 #include "ppapi/thunk/ppapi_thunk_export.h" 13 #include "ppapi/thunk/ppapi_thunk_export.h"
12 14
13 namespace ppapi { 15 namespace ppapi {
14 namespace thunk { 16 namespace thunk {
15 17
16 class PPAPI_THUNK_EXPORT PPB_NetworkList_API { 18 class PPAPI_THUNK_EXPORT PPB_NetworkList_API {
17 public: 19 public:
18 virtual ~PPB_NetworkList_API() {} 20 virtual ~PPB_NetworkList_API() {}
19 21
20 // Private API 22 // Private API
21 virtual uint32_t GetCount() = 0; 23 virtual uint32_t GetCount() = 0;
22 virtual PP_Var GetName(uint32_t index) = 0; 24 virtual PP_Var GetName(uint32_t index) = 0;
23 virtual PP_NetworkList_Type GetType(uint32_t index) = 0; 25 virtual PP_NetworkList_Type GetType(uint32_t index) = 0;
24 virtual PP_NetworkList_State GetState(uint32_t index) = 0; 26 virtual PP_NetworkList_State GetState(uint32_t index) = 0;
25 virtual int32_t GetIpAddresses(uint32_t index, 27 virtual int32_t GetIpAddresses(uint32_t index,
26 const PP_ArrayOutput& output) = 0; 28 const PP_ArrayOutput& output) = 0;
27 virtual PP_Var GetDisplayName(uint32_t index) = 0; 29 virtual PP_Var GetDisplayName(uint32_t index) = 0;
28 virtual uint32_t GetMTU(uint32_t index) = 0; 30 virtual uint32_t GetMTU(uint32_t index) = 0;
29 }; 31 };
30 32
31 } // namespace thunk 33 } // namespace thunk
32 } // namespace ppapi 34 } // namespace ppapi
33 35
34 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_API_H_ 36 #endif // PPAPI_THUNK_PPB_NETWORK_LIST_API_H_
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_mouse_lock_thunk.cc ('k') | ppapi/thunk/ppb_network_list_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698