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

Unified Diff: remoting/protocol/authenticator.cc

Issue 12326090: Third Party authentication protocol. (Closed) Base URL: http://git.chromium.org/chromium/src.git@host_key_pair
Patch Set: Add the missing new files Created 7 years, 10 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
Index: remoting/protocol/authenticator.cc
diff --git a/remoting/protocol/authenticator.cc b/remoting/protocol/authenticator.cc
index 168af76902d33f6d4217d2398600f4d13a5c7cf2..24ab2326d0f5cbcf91574e5463724d0513498a1e 100644
--- a/remoting/protocol/authenticator.cc
+++ b/remoting/protocol/authenticator.cc
@@ -4,6 +4,7 @@
#include "remoting/protocol/authenticator.h"
+#include "base/logging.h"
#include "remoting/base/constants.h"
#include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
@@ -32,5 +33,11 @@ const buzz::XmlElement* Authenticator::FindAuthenticatorMessage(
return message->FirstNamed(kAuthenticationQName);
}
+void Authenticator::PerformExternalAction(
+ const base::Closure& resume_callback) {
+ // Implementations that use a WAITING_EXTERNAL state must override this.
+ NOTREACHED();
+}
+
} // namespace protocol
} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698