Commit 5ea9ee00 authored by ekaramad's avatar ekaramad Committed by Commit bot

Removed an extra line from the listed file.

Setting |job_factory| to |NULL| seems unnecessary since it was being assigned right after.

BUG=None

Review URL: https://codereview.chromium.org/1134093002

Cr-Commit-Position: refs/heads/master@{#329399}
parent 3a99f598
......@@ -53,8 +53,8 @@ URLRequestJob* URLRequestJobManager::CreateJob(
return new URLRequestErrorJob(request, network_delegate, ERR_INVALID_URL);
// We do this here to avoid asking interceptors about unsupported schemes.
const URLRequestJobFactory* job_factory = NULL;
job_factory = request->context()->job_factory();
const URLRequestJobFactory* job_factory =
request->context()->job_factory();
const std::string& scheme = request->url().scheme(); // already lowercase
if (!job_factory->IsHandledProtocol(scheme)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment