diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-11 10:18:59 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-11 10:18:59 +0000 |
commit | 9acd869ec5621373757a6959310f39e1f5ec3f3d (patch) | |
tree | 43b9beab430d066670b7515579e20c755d9a0d4d /chrome/browser/automation/url_request_automation_job.cc | |
parent | 3f45597ed0041c49a627fd5e2be55ff6d5570022 (diff) | |
download | chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.zip chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.tar.gz chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.tar.bz2 |
net: Remove typedef net::URLRequestJob URLRequestJob;
BUG=64263
TEST=compiled locally, trybots
Review URL: http://codereview.chromium.org/5607004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68935 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/url_request_automation_job.cc')
-rw-r--r-- | chrome/browser/automation/url_request_automation_job.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome/browser/automation/url_request_automation_job.cc b/chrome/browser/automation/url_request_automation_job.cc index 874d600..12fd431 100644 --- a/chrome/browser/automation/url_request_automation_job.cc +++ b/chrome/browser/automation/url_request_automation_job.cc @@ -51,7 +51,7 @@ URLRequestAutomationJob::URLRequestAutomationJob( int request_id, AutomationResourceMessageFilter* filter, bool is_pending) - : URLRequestJob(request), + : net::URLRequestJob(request), id_(0), tab_(tab), message_filter_(filter), @@ -90,8 +90,9 @@ bool URLRequestAutomationJob::EnsureProtocolFactoryRegistered() { return true; } -URLRequestJob* URLRequestAutomationJob::Factory(net::URLRequest* request, - const std::string& scheme) { +net::URLRequestJob* URLRequestAutomationJob::Factory( + net::URLRequest* request, + const std::string& scheme) { bool scheme_is_http = request->url().SchemeIs("http"); bool scheme_is_https = request->url().SchemeIs("https"); @@ -127,7 +128,7 @@ URLRequestJob* URLRequestAutomationJob::Factory(net::URLRequest* request, return NULL; } -// URLRequestJob Implementation. +// net::URLRequestJob Implementation. void URLRequestAutomationJob::Start() { if (!is_pending()) { // Start reading asynchronously so that all error reporting and data @@ -152,7 +153,7 @@ void URLRequestAutomationJob::Kill() { } } DisconnectFromMessageFilter(); - URLRequestJob::Kill(); + net::URLRequestJob::Kill(); } bool URLRequestAutomationJob::ReadRawData( |