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

Side by Side Diff: remoting/host/token_validator_factory_impl.h

Issue 1547473005: Switch to standard integer types in remoting/host/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
« no previous file with comments | « remoting/host/token_validator_base.cc ('k') | remoting/host/token_validator_factory_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_ 5 #ifndef REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_
6 #define REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_ 6 #define REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/macros.h"
12 #include "net/url_request/url_request_context_getter.h" 12 #include "net/url_request/url_request_context_getter.h"
13 #include "remoting/host/token_validator_base.h" 13 #include "remoting/host/token_validator_base.h"
14 #include "remoting/protocol/token_validator.h" 14 #include "remoting/protocol/token_validator.h"
15 15
16 namespace remoting { 16 namespace remoting {
17 17
18 // This class dispenses |TokenValidator| implementations that use a UrlFetcher 18 // This class dispenses |TokenValidator| implementations that use a UrlFetcher
19 // to contact a |token_validation_url| and exchange the |token| for a 19 // to contact a |token_validation_url| and exchange the |token| for a
20 // |shared_secret|. 20 // |shared_secret|.
21 class TokenValidatorFactoryImpl : public protocol::TokenValidatorFactory { 21 class TokenValidatorFactoryImpl : public protocol::TokenValidatorFactory {
(...skipping 17 matching lines...) Expand all
39 ThirdPartyAuthConfig third_party_auth_config_; 39 ThirdPartyAuthConfig third_party_auth_config_;
40 scoped_refptr<RsaKeyPair> key_pair_; 40 scoped_refptr<RsaKeyPair> key_pair_;
41 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; 41 scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
42 42
43 DISALLOW_COPY_AND_ASSIGN(TokenValidatorFactoryImpl); 43 DISALLOW_COPY_AND_ASSIGN(TokenValidatorFactoryImpl);
44 }; 44 };
45 45
46 } // namespace remoting 46 } // namespace remoting
47 47
48 #endif // REMOTING_HOST_URL_FETCHER_TOKEN_VALIDATOR_FACTORY_H_ 48 #endif // REMOTING_HOST_URL_FETCHER_TOKEN_VALIDATOR_FACTORY_H_
OLDNEW
« no previous file with comments | « remoting/host/token_validator_base.cc ('k') | remoting/host/token_validator_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698