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

Side by Side Diff: net/http/http_auth_handler_basic.h

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment 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
« no previous file with comments | « net/http/http_auth_gssapi_posix.h ('k') | net/http/http_auth_handler_digest.h » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ 5 #ifndef NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_
6 #define NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ 6 #define NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "net/base/net_export.h" 10 #include "net/base/net_export.h"
(...skipping 10 matching lines...) Expand all
21 Factory(); 21 Factory();
22 virtual ~Factory(); 22 virtual ~Factory();
23 23
24 virtual int CreateAuthHandler( 24 virtual int CreateAuthHandler(
25 HttpAuthChallengeTokenizer* challenge, 25 HttpAuthChallengeTokenizer* challenge,
26 HttpAuth::Target target, 26 HttpAuth::Target target,
27 const GURL& origin, 27 const GURL& origin,
28 CreateReason reason, 28 CreateReason reason,
29 int digest_nonce_count, 29 int digest_nonce_count,
30 const BoundNetLog& net_log, 30 const BoundNetLog& net_log,
31 scoped_ptr<HttpAuthHandler>* handler) OVERRIDE; 31 scoped_ptr<HttpAuthHandler>* handler) override;
32 }; 32 };
33 33
34 virtual HttpAuth::AuthorizationResult HandleAnotherChallenge( 34 virtual HttpAuth::AuthorizationResult HandleAnotherChallenge(
35 HttpAuthChallengeTokenizer* challenge) OVERRIDE; 35 HttpAuthChallengeTokenizer* challenge) override;
36 36
37 protected: 37 protected:
38 virtual bool Init(HttpAuthChallengeTokenizer* challenge) OVERRIDE; 38 virtual bool Init(HttpAuthChallengeTokenizer* challenge) override;
39 39
40 virtual int GenerateAuthTokenImpl(const AuthCredentials* credentials, 40 virtual int GenerateAuthTokenImpl(const AuthCredentials* credentials,
41 const HttpRequestInfo* request, 41 const HttpRequestInfo* request,
42 const CompletionCallback& callback, 42 const CompletionCallback& callback,
43 std::string* auth_token) OVERRIDE; 43 std::string* auth_token) override;
44 44
45 private: 45 private:
46 virtual ~HttpAuthHandlerBasic() {} 46 virtual ~HttpAuthHandlerBasic() {}
47 47
48 bool ParseChallenge(HttpAuthChallengeTokenizer* challenge); 48 bool ParseChallenge(HttpAuthChallengeTokenizer* challenge);
49 }; 49 };
50 50
51 } // namespace net 51 } // namespace net
52 52
53 #endif // NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ 53 #endif // NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_
OLDNEW
« no previous file with comments | « net/http/http_auth_gssapi_posix.h ('k') | net/http/http_auth_handler_digest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698