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

Unified Diff: remoting/host/chromoting_messages.h

Issue 12545006: The worker process launcher can now ask the worker to crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/host/daemon_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_messages.h
diff --git a/remoting/host/chromoting_messages.h b/remoting/host/chromoting_messages.h
index 7bad9238f7cec0faea8b60c1251379030e8f7a99..4faed33b796a6dddb5536558434f7da9177585c6 100644
--- a/remoting/host/chromoting_messages.h
+++ b/remoting/host/chromoting_messages.h
@@ -22,17 +22,20 @@
#define IPC_MESSAGE_START ChromotingMsgStart
//-----------------------------------------------------------------------------
-// Chromoting messages sent from the daemon to the network process.
+// Chromoting messages sent from the daemon.
-// Requests the network process to crash producing a crash dump. The daemon
+// Requests the receiving process to crash producing a crash dump. The daemon
// sends this message when a fatal error has been detected indicating that
-// the network process misbehaves. The daemon passes the location of the code
+// the receiving process misbehaves. The daemon passes the location of the code
// that detected the error.
-IPC_MESSAGE_CONTROL3(ChromotingDaemonNetworkMsg_Crash,
+IPC_MESSAGE_CONTROL3(ChromotingDaemonMsg_Crash,
std::string /* function_name */,
std::string /* file_name */,
int /* line_number */)
+//-----------------------------------------------------------------------------
+// Chromoting messages sent from the daemon to the network process.
+
// Delivers the host configuration (and updates) to the network process.
IPC_MESSAGE_CONTROL1(ChromotingDaemonNetworkMsg_Configuration, std::string)
@@ -112,18 +115,6 @@ IPC_MESSAGE_CONTROL1(ChromotingNetworkDaemonMsg_HostStarted,
IPC_MESSAGE_CONTROL0(ChromotingNetworkDaemonMsg_HostShutdown)
//-----------------------------------------------------------------------------
-// Chromoting messages sent from the daemon to the desktop process.
-
-// Requests the desktop process to crash producing a crash dump. The daemon
-// sends this message when a fatal error has been detected indicating that
-// the desktop process misbehaves. The daemon passes the location of the code
-// that detected the error.
-IPC_MESSAGE_CONTROL3(ChromotingDaemonDesktopMsg_Crash,
- std::string /* function_name */,
- std::string /* file_name */,
- int /* line_number */)
-
-//-----------------------------------------------------------------------------
// Chromoting messages sent from the desktop to the daemon process.
// Notifies the daemon that a desktop integration process has been initialized.
« no previous file with comments | « no previous file | remoting/host/daemon_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698