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

Unified Diff: remoting/protocol/me2me_host_authenticator_factory.cc

Issue 1277093006: Enable QUIC support in chromoting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@quic_adapters
Patch Set: Created 5 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
« no previous file with comments | « remoting/protocol/jingle_session_unittest.cc ('k') | remoting/protocol/negotiating_authenticator_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/me2me_host_authenticator_factory.cc
diff --git a/remoting/protocol/me2me_host_authenticator_factory.cc b/remoting/protocol/me2me_host_authenticator_factory.cc
index 4b07d83b0316d0448e0f20e67968a51f50bc1ec5..59267083edb670db6741d8d5b4ec622657cc1653 100644
--- a/remoting/protocol/me2me_host_authenticator_factory.cc
+++ b/remoting/protocol/me2me_host_authenticator_factory.cc
@@ -47,6 +47,11 @@ class RejectingAuthenticator : public Authenticator {
return nullptr;
}
+ const std::string& GetAuthKey() const override {
+ NOTREACHED();
+ return auth_key_;
+ };
+
scoped_ptr<ChannelAuthenticator> CreateChannelAuthenticator() const override {
NOTREACHED();
return nullptr;
@@ -54,6 +59,7 @@ class RejectingAuthenticator : public Authenticator {
protected:
State state_;
+ std::string auth_key_;
};
} // namespace
« no previous file with comments | « remoting/protocol/jingle_session_unittest.cc ('k') | remoting/protocol/negotiating_authenticator_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698