diff options
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/child_process_messages.h | 8 | ||||
-rw-r--r-- | content/common/plugin_messages.h | 10 |
2 files changed, 8 insertions, 10 deletions
diff --git a/content/common/child_process_messages.h b/content/common/child_process_messages.h index ce02ec9..85c824e 100644 --- a/content/common/child_process_messages.h +++ b/content/common/child_process_messages.h @@ -5,6 +5,7 @@ // Common IPC messages used for child processes. // Multiply-included message file, hence no include guard. +#include "googleurl/src/gurl.h" #include "ipc/ipc_message_macros.h" #define IPC_MESSAGE_START ChildProcessMsgStart @@ -27,3 +28,10 @@ IPC_MESSAGE_CONTROL1(ChildProcessMsg_SetIPCLoggingEnabled, // Messages sent from the child process to the browser. IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_ShutdownRequest) + +// Get the list of proxies to use for |url|, as a semicolon delimited list +// of "<TYPE> <HOST>:<PORT>" | "DIRECT". +IPC_SYNC_MESSAGE_CONTROL1_2(ChildProcessHostMsg_ResolveProxy, + GURL /* url */, + int /* network error */, + std::string /* proxy list */)
\ No newline at end of file diff --git a/content/common/plugin_messages.h b/content/common/plugin_messages.h index b8bd205..23f271e 100644 --- a/content/common/plugin_messages.h +++ b/content/common/plugin_messages.h @@ -92,16 +92,6 @@ IPC_MESSAGE_CONTROL1(PluginProcessHostMsg_ChannelCreated, IPC_SYNC_MESSAGE_CONTROL0_1(PluginProcessHostMsg_GetPluginFinderUrl, std::string /* plugin finder URL */) -IPC_MESSAGE_CONTROL0(PluginProcessHostMsg_ShutdownRequest) - -// Get the list of proxies to use for |url|, as a semicolon delimited list -// of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also ViewHostMsg_ResolveProxy -// which does the same thing. -IPC_SYNC_MESSAGE_CONTROL1_2(PluginProcessHostMsg_ResolveProxy, - GURL /* url */, - int /* network error */, - std::string /* proxy list */) - #if defined(OS_WIN) // Destroys the given window's parent on the UI thread. IPC_MESSAGE_CONTROL2(PluginProcessHostMsg_PluginWindowDestroyed, |