Chromium Code Reviews

Unified Diff: net/url_request/url_request_redirect_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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « net/url_request/url_request_redirect_job.h ('k') | net/url_request/url_request_simple_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_redirect_job.cc
diff --git a/net/url_request/url_request_redirect_job.cc b/net/url_request/url_request_redirect_job.cc
index 05d18a60bc51fd55174b6b9b99912c456334ac9d..a6cd025bddc0dc0b0e4ef691e0fac6b2f26df8a6 100644
--- a/net/url_request/url_request_redirect_job.cc
+++ b/net/url_request/url_request_redirect_job.cc
@@ -8,7 +8,7 @@
URLRequestRedirectJob::URLRequestRedirectJob(net::URLRequest* request,
GURL redirect_destination)
- : URLRequestJob(request), redirect_destination_(redirect_destination) {
+ : net::URLRequestJob(request), redirect_destination_(redirect_destination) {
}
void URLRequestRedirectJob::Start() {
« no previous file with comments | « net/url_request/url_request_redirect_job.h ('k') | net/url_request/url_request_simple_job.cc » ('j') | no next file with comments »

Powered by Google App Engine