Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Unified Diff: chrome/browser/automation/url_request_automation_job.cc

Issue 5607004: net: Remove typedef net::URLRequestJob URLRequestJob; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 2 Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/automation/url_request_automation_job.h ('k') | chrome/browser/chrome_plugin_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/url_request_automation_job.cc
diff --git a/chrome/browser/automation/url_request_automation_job.cc b/chrome/browser/automation/url_request_automation_job.cc
index 874d6001e3b9497b385e1d9181caf2b358d528bc..12fd431cb626bfc7b8fcec4303bb180e2e596ad1 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(
« no previous file with comments | « chrome/browser/automation/url_request_automation_job.h ('k') | chrome/browser/chrome_plugin_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698