diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 12:02:05 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 12:02:05 +0000 |
commit | d0cc35b709d89775928ed5e588914837f4ca6c6c (patch) | |
tree | 771160b2ed2406a42df207687af0c8ed7cc134d4 /net/proxy | |
parent | f5d75f7d779dbc8bdc234f24a0c5e0bad1df40b2 (diff) | |
download | chromium_src-d0cc35b709d89775928ed5e588914837f4ca6c6c.zip chromium_src-d0cc35b709d89775928ed5e588914837f4ca6c6c.tar.gz chromium_src-d0cc35b709d89775928ed5e588914837f4ca6c6c.tar.bz2 |
net: Rename URLRequestStatus::os_error_.
BUG=92264
TEST=None
R=willchan@chromium.org
Review URL: http://codereview.chromium.org/7846007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100136 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 0c4bb6f..7025e72 100644 --- a/net/proxy/proxy_script_fetcher_impl.cc +++ b/net/proxy/proxy_script_fetcher_impl.cc @@ -110,7 +110,7 @@ void ProxyScriptFetcherImpl::OnResponseCompleted(URLRequest* request) { // Use |result_code_| as the request's error if we have already set it to // something specific. if (result_code_ == OK && !request->status().is_success()) - result_code_ = request->status().os_error(); + result_code_ = request->status().error(); FetchCompleted(); } |