| Index: remoting/host/token_validator_factory_impl.h
|
| diff --git a/remoting/host/token_validator_factory_impl.h b/remoting/host/token_validator_factory_impl.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..042f8e2214f2940d90448f4f5e9f6430f10046c7
|
| --- /dev/null
|
| +++ b/remoting/host/token_validator_factory_impl.h
|
| @@ -0,0 +1,50 @@
|
| +// Copyright 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_
|
| +#define REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_
|
| +
|
| +#include <set>
|
| +#include <string>
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "net/url_request/url_request_context_getter.h"
|
| +#include "remoting/protocol/third_party_host_authenticator.h"
|
| +
|
| +namespace remoting {
|
| +
|
| +// This class dispenses |TokenValidator| implementations that use a UrlFetcher
|
| +// to contact a |token_validation_url| and exchange the |token| for a
|
| +// |shared_secret|.
|
| +class TokenValidatorFactoryImpl
|
| + : public protocol::ThirdPartyHostAuthenticator::TokenValidatorFactory {
|
| + public:
|
| + // Creates a new factory. |token_url| and |token_validation_url| are the
|
| + // third party authentication service URLs, obtained via policy. |key_pair_|
|
| + // is used by the host to authenticate with the service by signing the token.
|
| + TokenValidatorFactoryImpl(
|
| + const GURL& token_url,
|
| + const GURL& token_validation_url,
|
| + scoped_refptr<RsaKeyPair> key_pair,
|
| + scoped_refptr<net::URLRequestContextGetter> request_context_getter);
|
| +
|
| + virtual ~TokenValidatorFactoryImpl();
|
| +
|
| + // TokenValidatorFactory interface.
|
| + virtual scoped_ptr<protocol::ThirdPartyHostAuthenticator::TokenValidator>
|
| + CreateTokenValidator(const std::string& local_jid,
|
| + const std::string& remote_jid) OVERRIDE;
|
| +
|
| + private:
|
| + GURL token_url_;
|
| + GURL token_validation_url_;
|
| + scoped_refptr<RsaKeyPair> key_pair_;
|
| + scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(TokenValidatorFactoryImpl);
|
| +};
|
| +
|
| +} // namespace remoting
|
| +
|
| +#endif // REMOTING_HOST_URL_FETCHER_TOKEN_VALIDATOR_FACTORY_H_
|
|
|