Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index 5e8978548f28ffc2195c18659c68fa9d11fdafaf..40af95697b75c85ee0ffe6e7fb4a007e96840623 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -83,7 +83,7 @@ IPC_ENUM_TRAITS(PP_FlashSetting) |
| IPC_ENUM_TRAITS(PP_ImageDataFormat) |
| IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) |
| IPC_ENUM_TRAITS(PP_InputEvent_Type) |
| -IPC_ENUM_TRAITS(PP_NetAddressFamily_Private) |
| +IPC_ENUM_TRAITS_MAX_VALUE(PP_NetAddressFamily_Private, PP_NETADDRESSFAMILY_IPV6) |
| IPC_ENUM_TRAITS(PP_NetworkListState_Private) |
| IPC_ENUM_TRAITS(PP_NetworkListType_Private) |
| IPC_ENUM_TRAITS(PP_PrintOrientation_Dev) |
| @@ -1497,12 +1497,17 @@ IPC_MESSAGE_CONTROL3(PpapiHostMsg_TrueTypeFont_GetTable, |
| IPC_MESSAGE_CONTROL1(PpapiPluginMsg_TrueTypeFont_GetTableReply, |
| std::string /* data */) |
| -// HostResolverPrivate, plugin -> host -> plugin |
| -IPC_MESSAGE_CONTROL0(PpapiHostMsg_HostResolverPrivate_Create) |
| -IPC_MESSAGE_CONTROL2(PpapiHostMsg_HostResolverPrivate_Resolve, |
| +// Host Resolver --------------------------------------------------------------- |
| +// Creates a PPB_HostResolver resource. |
| +IPC_MESSAGE_CONTROL0(PpapiHostMsg_HostResolver_Create) |
| + |
| +// Creates a PPB_HostResolver_Private resource. |
| +IPC_MESSAGE_CONTROL0(PpapiHostMsg_HostResolver_CreatePrivate) |
| + |
| +IPC_MESSAGE_CONTROL2(PpapiHostMsg_HostResolver_Resolve, |
|
raymes
2013/06/18 18:21:17
nit: it would be nice to document these messages i
yzshen1
2013/06/18 19:08:43
Done.
|
| ppapi::HostPortPair /* host_port */, |
| PP_HostResolver_Private_Hint /* hint */) |
| -IPC_MESSAGE_CONTROL2(PpapiPluginMsg_HostResolverPrivate_ResolveReply, |
| +IPC_MESSAGE_CONTROL2(PpapiPluginMsg_HostResolver_ResolveReply, |
| std::string /* canonical_name */, |
| std::vector<PP_NetAddress_Private> /* net_address_list */) |