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

Unified Diff: chrome/service/cloud_print/cloud_print_url_fetcher.cc

Issue 9572001: Do cookie checks in NetworkDelegate instead of the URLRequest::Delegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing Created 8 years, 9 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
Index: chrome/service/cloud_print/cloud_print_url_fetcher.cc
diff --git a/chrome/service/cloud_print/cloud_print_url_fetcher.cc b/chrome/service/cloud_print/cloud_print_url_fetcher.cc
index b19a7c26cabc709ef779b4530cc95a12da4140a1..137fa7e556b4e1ae89a4c939f5be6197a06532d3 100644
--- a/chrome/service/cloud_print/cloud_print_url_fetcher.cc
+++ b/chrome/service/cloud_print/cloud_print_url_fetcher.cc
@@ -124,7 +124,8 @@ void CloudPrintURLFetcher::OnURLFetchComplete(
// reached. Try again. Set up the request headers again because the token
// may have changed.
SetupRequestHeaders();
- request_->StartWithRequestContextGetter(GetRequestContextGetter());
+ request_->SetRequestContext(GetRequestContextGetter());
+ request_->Start();
}
}
}
« no previous file with comments | « chrome/browser/ui/search_engines/search_engine_tab_helper.cc ('k') | content/browser/renderer_host/resource_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698