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. |