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

Unified Diff: remoting/host/client_session.h

Issue 1458323002: Simplify It2Me host shutdown (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
Index: remoting/host/client_session.h
diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h
index 348552dbf434b8ef8c7df3c6545a416272fc5777..732179273de3f98b81e379ab55374935ca2349f6 100644
--- a/remoting/host/client_session.h
+++ b/remoting/host/client_session.h
@@ -57,9 +57,8 @@ class ClientSession
// Called after authentication has started.
virtual void OnSessionAuthenticating(ClientSession* client) = 0;
- // Called after authentication has finished successfully. Returns true if
- // the connection is allowed, or false otherwise.
- virtual bool OnSessionAuthenticated(ClientSession* client) = 0;
+ // Called after authentication has finished successfully.
+ virtual void OnSessionAuthenticated(ClientSession* client) = 0;
// Called after we've finished connecting all channels.
virtual void OnSessionChannelsConnected(ClientSession* client) = 0;

Powered by Google App Engine
This is Rietveld 408576698