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

Unified Diff: remoting/protocol/third_party_host_authenticator.h

Issue 12313085: Host-side third party token validation (Closed) Base URL: http://git.chromium.org/chromium/src.git@third_party_auth_protocol
Patch Set: Add missing parameters Created 7 years, 9 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/third_party_host_authenticator.h
diff --git a/remoting/protocol/third_party_host_authenticator.h b/remoting/protocol/third_party_host_authenticator.h
index b72ac054b13d37af1a391ba89cb23078ec32a312..ba0c6568f6d7a5d72e51b93dfc5af92ab945083b 100644
--- a/remoting/protocol/third_party_host_authenticator.h
+++ b/remoting/protocol/third_party_host_authenticator.h
@@ -54,6 +54,20 @@ class ThirdPartyHostAuthenticator : public ThirdPartyAuthenticatorBase {
virtual const std::string& token_scope() const = 0;
};
+ class TokenValidatorFactory {
+ public:
+ virtual ~TokenValidatorFactory() {}
+
+ // Creates a TokenValidator. |local_jid| and |remote_jid| are used to create
+ // a token scope that is restricted to the current connection's JIDs.
+ virtual scoped_ptr<TokenValidator> CreateTokenValidator(
+ const GURL& token_url,
+ const GURL& token_validation_url,
+ scoped_refptr<RsaKeyPair> key_pair,
Sergey Ulanov 2013/03/28 22:34:54 These three parameters are specific to url-based t
rmsousa 2013/03/28 23:12:49 These can change during the lifetime of the host (
Sergey Ulanov 2013/03/28 23:39:39 For some policies we restart the host when they ch
rmsousa 2013/04/04 22:13:43 Done.
+ const std::string& local_jid,
+ const std::string& remote_jid) = 0;
+ };
+
// Creates a third-party host authenticator. |local_cert| and |key_pair| are
// used by the underlying V2Authenticator to create the SSL channels.
// |token_validator| contains the token parameters to be sent to the client

Powered by Google App Engine
This is Rietveld 408576698