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

Unified Diff: net/url_request/url_request_unittest.cc

Issue 9307093: Don't use IDENT_SRC_URL for HttpAuth challenges. IE hasn't supported it for years, and at worst ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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
« net/http/http_proxy_utils.cc ('K') | « net/http/http_proxy_utils.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_unittest.cc
===================================================================
--- net/url_request/url_request_unittest.cc (revision 120359)
+++ net/url_request/url_request_unittest.cc (working copy)
@@ -2454,6 +2454,7 @@
d.set_credentials(AuthCredentials(kUser, kSecret));
URLRequest r(url_requiring_auth, &d);
+ r.set_load_flags(LOAD_NORMAL | LOAD_ENABLE_EMBEDDED_IDENTITY);
r.set_context(context);
r.Start();
@@ -2485,6 +2486,7 @@
GURL url_with_identity = url_requiring_auth.ReplaceComponents(replacements);
URLRequest r(url_with_identity, &d);
+ r.set_load_flags(LOAD_NORMAL | LOAD_ENABLE_EMBEDDED_IDENTITY);
r.set_context(context);
r.Start();
« net/http/http_proxy_utils.cc ('K') | « net/http/http_proxy_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698