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

Unified Diff: remoting/protocol/fake_session.cc

Issue 8619011: Use Authenticator interface in Session and SessionManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unittests 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
« no previous file with comments | « remoting/protocol/fake_session.h ('k') | remoting/protocol/jingle_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/fake_session.cc
diff --git a/remoting/protocol/fake_session.cc b/remoting/protocol/fake_session.cc
index f8f1e979bce95d1dd819dd07d07e3d418bfe2b5f..c09a62a5cb4dc2922e0f1a4260d368dc0bc6fc6e 100644
--- a/remoting/protocol/fake_session.cc
+++ b/remoting/protocol/fake_session.cc
@@ -261,30 +261,6 @@ void FakeSession::set_config(const SessionConfig& config) {
config_ = config;
}
-const std::string& FakeSession::initiator_token() {
- return initiator_token_;
-}
-
-void FakeSession::set_initiator_token(const std::string& initiator_token) {
- initiator_token_ = initiator_token;
-}
-
-const std::string& FakeSession::receiver_token() {
- return receiver_token_;
-}
-
-void FakeSession::set_receiver_token(const std::string& receiver_token) {
- receiver_token_ = receiver_token;
-}
-
-void FakeSession::set_shared_secret(const std::string& shared_secret) {
- shared_secret_ = shared_secret;
-}
-
-const std::string& FakeSession::shared_secret() {
- return shared_secret_;
-}
-
void FakeSession::Close() {
closed_ = true;
}
« no previous file with comments | « remoting/protocol/fake_session.h ('k') | remoting/protocol/jingle_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698