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

Side by Side Diff: base/mp/mp_messages_internal.h

Issue 1625015: Refactor ChildProcess and related classes to create a framework outside of br... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 10 years, 8 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 | « base/mp/mp_messages.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/shared_memory.h"
6 #include "build/build_config.h"
7 #include "ipc/ipc_message_macros.h"
8
9 //-----------------------------------------------------------------------------
10 // MultiProcess messages
11 // These are messages sent from the host to the child process.
12 IPC_BEGIN_MESSAGES(MultiProcess)
13 // Tells the child process it should stop.
14 IPC_MESSAGE_CONTROL0(MultiProcessMsg_AskBeforeShutdown)
15
16 // Sent in response to PluginProcessHostMsg_ShutdownRequest to tell the child
17 // process that it's safe to shutdown.
18 IPC_MESSAGE_CONTROL0(MultiProcessMsg_Shutdown)
19
20 #if defined(IPC_MESSAGE_LOG_ENABLED)
21 // Tell the child process to begin or end IPC message logging.
22 // Like above, this is used by all ChildProcesses.
23 IPC_MESSAGE_CONTROL1(MultiProcessMsg_SetIPCLoggingEnabled,
24 bool /* on or off */)
25 #endif
26
27 IPC_END_MESSAGES(MultiProcess)
28
29 //-----------------------------------------------------------------------------
30 // MultiProcessHost messages
31 // These are messages sent from the child process to the host process.
32 IPC_BEGIN_MESSAGES(MultiProcessHost)
33 IPC_MESSAGE_CONTROL0(MultiProcessHostMsg_ShutdownRequest)
34
35 IPC_END_MESSAGES(MultiProcessHost)
OLDNEW
« no previous file with comments | « base/mp/mp_messages.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698