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

Unified Diff: net/url_request/url_request_http_job.cc

Issue 5607004: net: Remove typedef net::URLRequestJob URLRequestJob; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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
Index: net/url_request/url_request_http_job.cc
diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc
index 888e94cba51b7b09ea979497293638ca1df88e74..3e1afd1b5e798d6199d1a6127cc0d163247f329f 100644
--- a/net/url_request/url_request_http_job.cc
+++ b/net/url_request/url_request_http_job.cc
@@ -40,8 +40,8 @@ static const char kAvailDictionaryHeader[] = "Avail-Dictionary";
// TODO(darin): make sure the port blocking code is not lost
// static
-URLRequestJob* URLRequestHttpJob::Factory(net::URLRequest* request,
- const std::string& scheme) {
+net::URLRequestJob* URLRequestHttpJob::Factory(net::URLRequest* request,
+ const std::string& scheme) {
DCHECK(scheme == "http" || scheme == "https");
int port = request->url().IntPort();
@@ -78,7 +78,7 @@ URLRequestJob* URLRequestHttpJob::Factory(net::URLRequest* request,
}
URLRequestHttpJob::URLRequestHttpJob(net::URLRequest* request)
- : URLRequestJob(request),
+ : net::URLRequestJob(request),
response_info_(NULL),
response_cookies_save_index_(0),
proxy_auth_state_(net::AUTH_STATE_DONT_NEED_AUTH),
@@ -168,7 +168,7 @@ void URLRequestHttpJob::Kill() {
return;
DestroyTransaction();
- URLRequestJob::Kill();
+ net::URLRequestJob::Kill();
}
net::LoadState URLRequestHttpJob::GetLoadState() const {
@@ -619,7 +619,7 @@ void URLRequestHttpJob::NotifyHeadersComplete() {
return;
}
- URLRequestJob::NotifyHeadersComplete();
+ net::URLRequestJob::NotifyHeadersComplete();
}
void URLRequestHttpJob::DestroyTransaction() {

Powered by Google App Engine
This is Rietveld 408576698