| 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;
|
|
|