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

Unified Diff: components/precache/core/precache_fetcher.cc

Issue 786423002: Get rid of net::DO_NOT_PROMPT_FOR_LOGIN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delete DUP::load_flags_ as well Created 6 years 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
Index: components/precache/core/precache_fetcher.cc
diff --git a/components/precache/core/precache_fetcher.cc b/components/precache/core/precache_fetcher.cc
index 70abac7b6cf1c388e36d63ecca827fc16a4e0e3b..94189444cecc813bdadbd64f2f7172e11bd67cd5 100644
--- a/components/precache/core/precache_fetcher.cc
+++ b/components/precache/core/precache_fetcher.cc
@@ -121,7 +121,6 @@ PrecacheFetcher::Fetcher::Fetcher(
: callback_(callback) {
url_fetcher_.reset(URLFetcher::Create(url, URLFetcher::GET, this));
url_fetcher_->SetRequestContext(request_context);
- url_fetcher_->SetLoadFlags(net::LOAD_DO_NOT_PROMPT_FOR_LOGIN);
bengr 2014/12/10 23:50:51 mmenke@ suggested that we add this in the first pl
url_fetcher_->Start();
}

Powered by Google App Engine
This is Rietveld 408576698