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

Unified Diff: remoting/host/session_manager.cc

Issue 3320003: Allows chromoting host to be connected again after connection drops. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 4 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
« remoting/host/chromoting_host.cc ('K') | « remoting/host/chromoting_host.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/session_manager.cc
diff --git a/remoting/host/session_manager.cc b/remoting/host/session_manager.cc
index 3da20b7aec0356cb8ddc2765ba6492b8716b889f..7982b16496a11e9db771b46dd77fdaeb3ae281a1 100644
--- a/remoting/host/session_manager.cc
+++ b/remoting/host/session_manager.cc
@@ -111,7 +111,7 @@ void SessionManager::DoStart() {
DCHECK_EQ(capture_loop_, MessageLoop::current());
if (started_) {
- NOTREACHED() << "Record session already started";
+ NOTREACHED() << "Record session already started.";
return;
}
@@ -128,7 +128,7 @@ void SessionManager::DoPause() {
DCHECK_EQ(capture_loop_, MessageLoop::current());
if (!started_) {
- NOTREACHED() << "Record session not started";
+ NOTREACHED() << "Record session not started.";
return;
}
« remoting/host/chromoting_host.cc ('K') | « remoting/host/chromoting_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698