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

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

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_BASE_H_ 5 #ifndef REMOTING_HOST_TOKEN_VALIDATOR_BASE_H_
6 #define REMOTING_HOST_TOKEN_VALIDATOR_BASE_H_ 6 #define REMOTING_HOST_TOKEN_VALIDATOR_BASE_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "net/url_request/url_request.h" 10 #include "net/url_request/url_request.h"
(...skipping 29 matching lines...) Expand all
40 TokenValidatorBase( 40 TokenValidatorBase(
41 const ThirdPartyAuthConfig& third_party_auth_config, 41 const ThirdPartyAuthConfig& third_party_auth_config,
42 const std::string& token_scope, 42 const std::string& token_scope,
43 scoped_refptr<net::URLRequestContextGetter> request_context_getter); 43 scoped_refptr<net::URLRequestContextGetter> request_context_getter);
44 virtual ~TokenValidatorBase(); 44 virtual ~TokenValidatorBase();
45 45
46 // TokenValidator interface. 46 // TokenValidator interface.
47 virtual void ValidateThirdPartyToken( 47 virtual void ValidateThirdPartyToken(
48 const std::string& token, 48 const std::string& token,
49 const base::Callback<void( 49 const base::Callback<void(
50 const std::string& shared_secret)>& on_token_validated) OVERRIDE; 50 const std::string& shared_secret)>& on_token_validated) override;
51 51
52 virtual const GURL& token_url() const OVERRIDE; 52 virtual const GURL& token_url() const override;
53 virtual const std::string& token_scope() const OVERRIDE; 53 virtual const std::string& token_scope() const override;
54 54
55 // URLRequest::Delegate interface. 55 // URLRequest::Delegate interface.
56 virtual void OnResponseStarted(net::URLRequest* source) OVERRIDE; 56 virtual void OnResponseStarted(net::URLRequest* source) override;
57 virtual void OnReadCompleted(net::URLRequest* source, 57 virtual void OnReadCompleted(net::URLRequest* source,
58 int bytes_read) OVERRIDE; 58 int bytes_read) override;
59 virtual void OnCertificateRequested( 59 virtual void OnCertificateRequested(
60 net::URLRequest* source, 60 net::URLRequest* source,
61 net::SSLCertRequestInfo* cert_request_info) OVERRIDE; 61 net::SSLCertRequestInfo* cert_request_info) override;
62 62
63 protected: 63 protected:
64 void OnCertificatesSelected(net::CertificateList* selected_certs, 64 void OnCertificatesSelected(net::CertificateList* selected_certs,
65 net::ClientCertStore* unused); 65 net::ClientCertStore* unused);
66 66
67 virtual void StartValidateRequest(const std::string& token) = 0; 67 virtual void StartValidateRequest(const std::string& token) = 0;
68 virtual bool IsValidScope(const std::string& token_scope); 68 virtual bool IsValidScope(const std::string& token_scope);
69 std::string ProcessResponse(); 69 std::string ProcessResponse();
70 70
71 // Constructor parameters. 71 // Constructor parameters.
72 ThirdPartyAuthConfig third_party_auth_config_; 72 ThirdPartyAuthConfig third_party_auth_config_;
73 std::string token_scope_; 73 std::string token_scope_;
74 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; 74 scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
75 75
76 // URLRequest related fields. 76 // URLRequest related fields.
77 scoped_ptr<net::URLRequest> request_; 77 scoped_ptr<net::URLRequest> request_;
78 scoped_refptr<net::IOBuffer> buffer_; 78 scoped_refptr<net::IOBuffer> buffer_;
79 std::string data_; 79 std::string data_;
80 80
81 base::Callback<void(const std::string& shared_secret)> on_token_validated_; 81 base::Callback<void(const std::string& shared_secret)> on_token_validated_;
82 82
83 base::WeakPtrFactory<TokenValidatorBase> weak_factory_; 83 base::WeakPtrFactory<TokenValidatorBase> weak_factory_;
84 84
85 DISALLOW_COPY_AND_ASSIGN(TokenValidatorBase); 85 DISALLOW_COPY_AND_ASSIGN(TokenValidatorBase);
86 }; 86 };
87 87
88 } // namespace remoting 88 } // namespace remoting
89 89
90 #endif // REMOTING_HOST_TOKEN_VALIDATOR_BASE_H 90 #endif // REMOTING_HOST_TOKEN_VALIDATOR_BASE_H
OLDNEW
« no previous file with comments | « remoting/host/single_window_input_injector_mac.cc ('k') | remoting/host/token_validator_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698