| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Common IPC messages used for child processes. | 5 // Common IPC messages used for child processes. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "googleurl/src/gurl.h" | 8 #include "googleurl/src/gurl.h" |
| 9 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_ShutdownRequest) | 37 IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_ShutdownRequest) |
| 38 | 38 |
| 39 // Reply from child processes acking ChildProcessMsg_TraceChangeStatus(false). | 39 // Reply from child processes acking ChildProcessMsg_TraceChangeStatus(false). |
| 40 IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_EndTracingAck) | 40 IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_EndTracingAck) |
| 41 | 41 |
| 42 // Child processes send trace data back in JSON chunks. | 42 // Child processes send trace data back in JSON chunks. |
| 43 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TraceDataCollected, | 43 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TraceDataCollected, |
| 44 std::string /*json trace data*/) | 44 std::string /*json trace data*/) |
| 45 | 45 |
| 46 // NaCl's 64 bit Windows build only links with a bare-minimum number of |
| 47 // libraries, and GURL isn't one of them. |
| 48 #if !defined(NACL_WIN64) |
| 46 // Get the list of proxies to use for |url|, as a semicolon delimited list | 49 // Get the list of proxies to use for |url|, as a semicolon delimited list |
| 47 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". | 50 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". |
| 48 IPC_SYNC_MESSAGE_CONTROL1_2(ChildProcessHostMsg_ResolveProxy, | 51 IPC_SYNC_MESSAGE_CONTROL1_2(ChildProcessHostMsg_ResolveProxy, |
| 49 GURL /* url */, | 52 GURL /* url */, |
| 50 int /* network error */, | 53 int /* network error */, |
| 51 std::string /* proxy list */) | 54 std::string /* proxy list */) |
| 55 #endif |
| OLD | NEW |