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

Unified Diff: remoting/protocol/session.h

Issue 8619011: Use Authenticator interface in Session and SessionManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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/protocol/session.h
diff --git a/remoting/protocol/session.h b/remoting/protocol/session.h
index fdefd954285352711fb72877378958795c856736..1f7dcc1879ad2f93b842590fb94e66eff33ec7f2 100644
--- a/remoting/protocol/session.h
+++ b/remoting/protocol/session.h
@@ -109,16 +109,6 @@ class Session : public base::NonThreadSafe {
// ChromotocolServer::IncomingConnectionCallback.
virtual void set_config(const SessionConfig& config) = 0;
- // The raw auth tokens from the session-initiate, or session-accept stanzas.
- virtual const std::string& initiator_token() = 0;
- virtual void set_initiator_token(const std::string& initiator_token) = 0;
- virtual const std::string& receiver_token() = 0;
- virtual void set_receiver_token(const std::string& receiver_token) = 0;
-
- // A shared secret to use to mutually-authenticate the SSL channels.
- virtual void set_shared_secret(const std::string& secret) = 0;
- virtual const std::string& shared_secret() = 0;
-
// Closes connection. Callbacks are guaranteed not to be called
// after this method returns. Must be called before the object is
// destroyed, unless the state is set to FAILED or CLOSED.

Powered by Google App Engine
This is Rietveld 408576698