diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-31 23:29:13 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-31 23:29:13 +0000 |
commit | b4cdb69c9e1fc9c83b4fdd0bcab32d25debea70c (patch) | |
tree | 6764a6fd6b265369f1f650e5e5e6eeefd715094f /chrome/browser/automation/url_request_automation_job.h | |
parent | 2ec13a4db250c74dd94bc5b1e8e007cf388b7a16 (diff) | |
download | chromium_src-b4cdb69c9e1fc9c83b4fdd0bcab32d25debea70c.zip chromium_src-b4cdb69c9e1fc9c83b4fdd0bcab32d25debea70c.tar.gz chromium_src-b4cdb69c9e1fc9c83b4fdd0bcab32d25debea70c.tar.bz2 |
Explicitly including the redirect status with the AutomationURLResponse info.
Before we were always defaulting to 301.
TEST=run automation tests.
BUG=none
Review URL: http://codereview.chromium.org/178041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24962 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/url_request_automation_job.h')
-rw-r--r-- | chrome/browser/automation/url_request_automation_job.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/automation/url_request_automation_job.h b/chrome/browser/automation/url_request_automation_job.h index ade6d38..f43316f 100644 --- a/chrome/browser/automation/url_request_automation_job.h +++ b/chrome/browser/automation/url_request_automation_job.h @@ -70,6 +70,7 @@ class URLRequestAutomationJob : public URLRequestJob { std::string mime_type_; scoped_refptr<net::HttpResponseHeaders> headers_; std::string redirect_url_; + int redirect_status_; static int instance_count_; |