Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: content/common/child_process_messages.h

Issue 6713084: Move the rest of the renderer->browser messages that belong in content. Also do a bunch of cleanup: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/common/child_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/common/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698