| Index: ppapi/proxy/ppapi_messages.h
|
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h
|
| index 21e5e12ed5aa4e4e2b9f5be815a41825e93d1f27..c3e0b0ebcff612bba2e317ac4fa8ac7831469b0e 100644
|
| --- a/ppapi/proxy/ppapi_messages.h
|
| +++ b/ppapi/proxy/ppapi_messages.h
|
| @@ -1518,6 +1518,17 @@ IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
|
| PP_Point /* top_left */)
|
| IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
|
|
|
| +// NetworkProxy ----------------------------------------------------------------
|
| +IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkProxy_Create)
|
| +
|
| +// Query the browser for the proxy server to use for the given URL.
|
| +IPC_MESSAGE_CONTROL1(PpapiHostMsg_NetworkProxy_GetProxyForURL,
|
| + std::string /* url */)
|
| +
|
| +// Reply message for GetProxyForURL containing the proxy server.
|
| +IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkProxy_GetProxyForURLReply,
|
| + std::string /* proxy */)
|
| +
|
| // TrueTypeFont.
|
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_Create)
|
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_TrueTypeFontSingleton_GetFontFamilies)
|
|
|