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

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

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 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 (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_DIGEST_H_ 5 #ifndef NET_HTTP_HTTP_AUTH_HANDLER_DIGEST_H_
6 #define NET_HTTP_HTTP_AUTH_HANDLER_DIGEST_H_ 6 #define NET_HTTP_HTTP_AUTH_HANDLER_DIGEST_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 // This factory owns the passed in |nonce_generator|. 65 // This factory owns the passed in |nonce_generator|.
66 void set_nonce_generator(const NonceGenerator* nonce_generator); 66 void set_nonce_generator(const NonceGenerator* nonce_generator);
67 67
68 int CreateAuthHandler(HttpAuthChallengeTokenizer* challenge, 68 int CreateAuthHandler(HttpAuthChallengeTokenizer* challenge,
69 HttpAuth::Target target, 69 HttpAuth::Target target,
70 const SSLInfo& ssl_info, 70 const SSLInfo& ssl_info,
71 const GURL& origin, 71 const GURL& origin,
72 CreateReason reason, 72 CreateReason reason,
73 int digest_nonce_count, 73 int digest_nonce_count,
74 const BoundNetLog& net_log, 74 const NetLogWithSource& net_log,
75 std::unique_ptr<HttpAuthHandler>* handler) override; 75 std::unique_ptr<HttpAuthHandler>* handler) override;
76 76
77 private: 77 private:
78 std::unique_ptr<const NonceGenerator> nonce_generator_; 78 std::unique_ptr<const NonceGenerator> nonce_generator_;
79 }; 79 };
80 80
81 HttpAuth::AuthorizationResult HandleAnotherChallenge( 81 HttpAuth::AuthorizationResult HandleAnotherChallenge(
82 HttpAuthChallengeTokenizer* challenge) override; 82 HttpAuthChallengeTokenizer* challenge) override;
83 83
84 protected: 84 protected:
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 // UTF-8. 172 // UTF-8.
173 std::string original_realm_; 173 std::string original_realm_;
174 174
175 int nonce_count_; 175 int nonce_count_;
176 const NonceGenerator* nonce_generator_; 176 const NonceGenerator* nonce_generator_;
177 }; 177 };
178 178
179 } // namespace net 179 } // namespace net
180 180
181 #endif // NET_HTTP_HTTP_AUTH_HANDLER_DIGEST_H_ 181 #endif // NET_HTTP_HTTP_AUTH_HANDLER_DIGEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698