diff options
author | tburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 17:55:16 +0000 |
---|---|---|
committer | tburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 17:55:16 +0000 |
commit | a96f4c5795e7cf0d2778a3d77316614de6fcba69 (patch) | |
tree | 88e5448c6a50f9f83b478751682d3f9930f47aa2 /net/proxy | |
parent | 8a76c8f5fc87008d0b14877076b83d29b35b1846 (diff) | |
download | chromium_src-a96f4c5795e7cf0d2778a3d77316614de6fcba69.zip chromium_src-a96f4c5795e7cf0d2778a3d77316614de6fcba69.tar.gz chromium_src-a96f4c5795e7cf0d2778a3d77316614de6fcba69.tar.bz2 |
Allow the content browser client to specify a special cookie store to be
used for a given render process id. This special cookie store will then
be used for renderer messages pertaining to cookies, url fetches in net,
and websockets. If the special cookie store is NULL, a default cookie store
will be used.
R=erikwright@chromium.org, jam@chromium.org, lambroslambrou@chromium.org, mmenke@chromium.org, tyoshino@chromium.org
Review URL: https://codereview.chromium.org/188693003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256579 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy')
-rw-r--r-- | net/proxy/proxy_script_fetcher_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/proxy/proxy_script_fetcher_impl.cc b/net/proxy/proxy_script_fetcher_impl.cc index 705bbbf..0887d8c 100644 --- a/net/proxy/proxy_script_fetcher_impl.cc +++ b/net/proxy/proxy_script_fetcher_impl.cc @@ -135,7 +135,7 @@ int ProxyScriptFetcherImpl::Fetch( } cur_request_ = - url_request_context_->CreateRequest(url, DEFAULT_PRIORITY, this); + url_request_context_->CreateRequest(url, DEFAULT_PRIORITY, this, NULL); cur_request_->set_method("GET"); // Make sure that the PAC script is downloaded using a direct connection, |