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

Unified Diff: content/shell/browser/shell_url_request_context_getter.cc

Issue 2944313003: Remove the dependence on BrowserThread::FILE for (Closed)
Patch Set: address mmenke's comments Created 3 years, 6 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: content/shell/browser/shell_url_request_context_getter.cc
diff --git a/content/shell/browser/shell_url_request_context_getter.cc b/content/shell/browser/shell_url_request_context_getter.cc
index dcad965c0ff83c59f00a84ea8c18f87d90017a3b..079f23b743e7f535eb1985b10547bcb34cee4cbd 100644
--- a/content/shell/browser/shell_url_request_context_getter.cc
+++ b/content/shell/browser/shell_url_request_context_getter.cc
@@ -95,7 +95,6 @@ ShellURLRequestContextGetter::ShellURLRequestContextGetter(
: ignore_certificate_errors_(ignore_certificate_errors),
base_path_(base_path),
io_task_runner_(std::move(io_task_runner)),
- file_task_runner_(std::move(file_task_runner)),
net_log_(net_log),
request_interceptors_(std::move(request_interceptors)) {
// Must first be created on the UI thread.
@@ -119,8 +118,7 @@ ShellURLRequestContextGetter::CreateNetworkDelegate() {
std::unique_ptr<net::ProxyConfigService>
ShellURLRequestContextGetter::GetProxyConfigService() {
- return net::ProxyService::CreateSystemProxyConfigService(io_task_runner_,
- file_task_runner_);
+ return net::ProxyService::CreateSystemProxyConfigService(io_task_runner_);
}
std::unique_ptr<net::ProxyService>
« no previous file with comments | « content/shell/browser/shell_url_request_context_getter.h ('k') | headless/lib/browser/headless_url_request_context_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698