Remove the dependence on BrowserThread::FILE for

https://codereview.chromium.org/2944313003
This commit is contained in:
Aleksei Kuzmin 2017-08-23 21:55:46 +03:00 committed by Cheng Zhao
parent b29c485ec4
commit 6c7ad3ac58
5 changed files with 2 additions and 9 deletions

View file

@ -130,7 +130,6 @@ URLRequestContextGetter::URLRequestContextGetter(
const base::FilePath& base_path,
bool in_memory,
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner,
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector protocol_interceptors)
: delegate_(delegate),
@ -139,7 +138,6 @@ URLRequestContextGetter::URLRequestContextGetter(
base_path_(base_path),
in_memory_(in_memory),
io_task_runner_(io_task_runner),
file_task_runner_(file_task_runner),
protocol_interceptors_(std::move(protocol_interceptors)),
job_factory_(nullptr) {
// Must first be created on the UI thread.
@ -155,7 +153,7 @@ URLRequestContextGetter::URLRequestContextGetter(
// must synchronously run on the glib message loop. This will be passed to
// the URLRequestContextStorage on the IO thread in GetURLRequestContext().
proxy_config_service_ = net::ProxyService::CreateSystemProxyConfigService(
io_task_runner_, file_task_runner_);
io_task_runner_);
}
URLRequestContextGetter::~URLRequestContextGetter() {