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

Unified Diff: ppapi/thunk/ppb_network_list_api.h

Issue 23450012: Make NetworkList and NetworkMonitor APIs public (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/thunk/interfaces_ppb_public_stable.h ('k') | ppapi/thunk/ppb_network_list_private_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_network_list_api.h
diff --git a/ppapi/thunk/ppb_network_list_api.h b/ppapi/thunk/ppb_network_list_api.h
index 661399a6b021cf09948028b6f50f0a937c4cb567..df27a20e74d3cc198132467926f0dea700fff3f0 100644
--- a/ppapi/thunk/ppb_network_list_api.h
+++ b/ppapi/thunk/ppb_network_list_api.h
@@ -7,7 +7,7 @@
#include <vector>
-#include "ppapi/c/private/ppb_network_list_private.h"
+#include "ppapi/c/ppb_network_list.h"
#include "ppapi/thunk/ppapi_thunk_export.h"
namespace ppapi {
@@ -20,8 +20,8 @@ class PPAPI_THUNK_EXPORT PPB_NetworkList_API {
// Private API
virtual uint32_t GetCount() = 0;
virtual PP_Var GetName(uint32_t index) = 0;
- virtual PP_NetworkListType_Private GetType(uint32_t index) = 0;
- virtual PP_NetworkListState_Private GetState(uint32_t index) = 0;
+ virtual PP_NetworkList_Type GetType(uint32_t index) = 0;
+ virtual PP_NetworkList_State GetState(uint32_t index) = 0;
virtual int32_t GetIpAddresses(uint32_t index,
const PP_ArrayOutput& output) = 0;
virtual PP_Var GetDisplayName(uint32_t index) = 0;
« no previous file with comments | « ppapi/thunk/interfaces_ppb_public_stable.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