Index: remoting/host/daemon_process.cc |
diff --git a/remoting/host/daemon_process.cc b/remoting/host/daemon_process.cc |
index d9d05b428bc8faa811aa89b2bafa546fc429feb4..d28ff3bfa27184ebb7cde3b8a061cef5e12f6340 100644 |
--- a/remoting/host/daemon_process.cc |
+++ b/remoting/host/daemon_process.cc |
@@ -17,6 +17,7 @@ |
#include "remoting/host/chromoting_messages.h" |
#include "remoting/host/desktop_session.h" |
#include "remoting/host/host_event_logger.h" |
+#include "remoting/host/host_exit_codes.h" |
#include "remoting/host/host_status_observer.h" |
#include "remoting/host/screen_resolution.h" |
#include "remoting/protocol/transport.h" |
@@ -126,8 +127,9 @@ bool DaemonProcess::OnMessageReceived(const IPC::Message& message) { |
return handled; |
} |
-void DaemonProcess::OnPermanentError() { |
+void DaemonProcess::OnPermanentError(int exit_code) { |
DCHECK(caller_task_runner()->BelongsToCurrentThread()); |
+ |
Jamie
2013/06/20 17:37:54
Nit: I don't think a blank line here improves read
alexeypa (please no reviews)
2013/06/20 21:19:12
Done.
|
Stop(); |
} |