commit | bb1c4661382511a6853ca6ffaaa31c5113b167fb | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Thu Nov 14 00:00:07 2013 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Thu Nov 14 00:00:07 2013 |
tree | 2c40a9dd3a4e1af8c8db871bcd1edc93cd441f12 | |
parent | eac4be9e2c089e72f338f17a09a9027230adeb26 [diff] [blame] |
[Net] Assert that URLRequests with LOAD_IGNORE_LIMITS have MAXIMUM_PRIORITY Also remove the priority juggling in ClientSocketPoolBaseHelper, and instead assert that any requests with ignore_limits = true also has priority = MAXIMUM_PRIORITY. BUG=166689 [email protected], [email protected], [email protected], [email protected], [email protected], [email protected] [email protected], [email protected] Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=232802 Review URL: https://codereview.chromium.org/51683002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234964 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/net/proxy/proxy_script_fetcher_impl.cc b/net/proxy/proxy_script_fetcher_impl.cc index 68a8205..705bbbf 100644 --- a/net/proxy/proxy_script_fetcher_impl.cc +++ b/net/proxy/proxy_script_fetcher_impl.cc
@@ -147,8 +147,8 @@ // checking in order to avoid a circular dependency when attempting to fetch // the OCSP response or CRL. We could make the revocation check go direct but // the proxy might be the only way to the outside world. - cur_request_->set_load_flags(LOAD_BYPASS_PROXY | LOAD_DISABLE_CACHE | - LOAD_DISABLE_CERT_REVOCATION_CHECKING); + cur_request_->SetLoadFlags(LOAD_BYPASS_PROXY | LOAD_DISABLE_CACHE | + LOAD_DISABLE_CERT_REVOCATION_CHECKING); // Save the caller's info for notification on completion. callback_ = callback;