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

Unified Diff: chrome/browser/net/url_request_failed_dns_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/net/metadata_url_request.cc ('k') | chrome/browser/net/url_request_mock_http_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/url_request_failed_dns_job.cc
diff --git a/chrome/browser/net/url_request_failed_dns_job.cc b/chrome/browser/net/url_request_failed_dns_job.cc
index 7b6a16b8b5fdf1b95a1c396255e7adf185ba846d..7137468d4234f0cffea4a7dd71099bc37a5a5ba9 100644
--- a/chrome/browser/net/url_request_failed_dns_job.cc
+++ b/chrome/browser/net/url_request_failed_dns_job.cc
@@ -15,7 +15,7 @@ const char URLRequestFailedDnsJob::kTestUrl[] =
"http://url.handled.by.fake.dns/";
URLRequestFailedDnsJob::URLRequestFailedDnsJob(net::URLRequest* request)
- : URLRequestJob(request),
+ : net::URLRequestJob(request),
ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)) {}
URLRequestFailedDnsJob::~URLRequestFailedDnsJob() {}
@@ -35,7 +35,7 @@ void URLRequestFailedDnsJob::AddUrlHandler() {
}
/*static */
-URLRequestJob* URLRequestFailedDnsJob::Factory(net::URLRequest* request,
+net::URLRequestJob* URLRequestFailedDnsJob::Factory(net::URLRequest* request,
const std::string& scheme) {
return new URLRequestFailedDnsJob(request);
}
« no previous file with comments | « chrome/browser/net/metadata_url_request.cc ('k') | chrome/browser/net/url_request_mock_http_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698