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

Unified Diff: net/http/http_auth_cache_unittest.cc

Issue 1393693002: [net/http auth] Split HttpAuthHandler creation from initialization. Base URL: https://chromium.googlesource.com/chromium/src.git@rename-auth-handler-methods
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_auth.cc ('k') | net/http/http_auth_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_cache_unittest.cc
diff --git a/net/http/http_auth_cache_unittest.cc b/net/http/http_auth_cache_unittest.cc
index 1b8a5c89fb802129182742a44ee1d486a6a07231..036c6e3ffe04e665b4bf839b22bb3b30553023c9 100644
--- a/net/http/http_auth_cache_unittest.cc
+++ b/net/http/http_auth_cache_unittest.cc
@@ -23,9 +23,9 @@ class MockAuthHandler : public HttpAuthHandler {
public:
MockAuthHandler(const std::string& scheme,
const std::string& realm,
- HttpAuth::Target target) {
+ HttpAuth::Target target)
+ : HttpAuthHandler(scheme) {
// Can't use initializer list since these are members of the base class.
- auth_scheme_ = scheme;
realm_ = realm;
target_ = target;
}
« no previous file with comments | « net/http/http_auth.cc ('k') | net/http/http_auth_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698