| 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..7ebfd562843077520ac41b90ded547e790e6733c 100644
|
| --- a/remoting/protocol/third_party_host_authenticator.h
|
| +++ b/remoting/protocol/third_party_host_authenticator.h
|
| @@ -54,6 +54,19 @@ 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 std::string& local_jid,
|
| + const std::string& remote_jid) = 0;
|
| +
|
| + virtual bool IsEnabled() const = 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
|
|
|