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

Unified Diff: webkit/appcache/appcache_url_request_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: webkit/appcache/appcache_url_request_job.cc
diff --git a/webkit/appcache/appcache_url_request_job.cc b/webkit/appcache/appcache_url_request_job.cc
index c70cd7aa2358b8f4a1323e688d1a72bf5d01f20b..593ae67bd02f6237ca81b455d2a457fca871aa15 100644
--- a/webkit/appcache/appcache_url_request_job.cc
+++ b/webkit/appcache/appcache_url_request_job.cc
@@ -21,7 +21,7 @@ namespace appcache {
AppCacheURLRequestJob::AppCacheURLRequestJob(
net::URLRequest* request, AppCacheStorage* storage)
- : URLRequestJob(request), storage_(storage),
+ : net::URLRequestJob(request), storage_(storage),
has_been_started_(false), has_been_killed_(false),
delivery_type_(AWAITING_DELIVERY_ORDERS),
cache_id_(kNoCacheId), is_fallback_(false),
@@ -193,7 +193,7 @@ void AppCacheURLRequestJob::OnReadComplete(int result) {
NotifyReadComplete(result);
}
-// URLRequestJob overrides ------------------------------------------------
+// net::URLRequestJob overrides ------------------------------------------------
void AppCacheURLRequestJob::Start() {
DCHECK(!has_been_started());
@@ -209,7 +209,7 @@ void AppCacheURLRequestJob::Kill() {
storage_->CancelDelegateCallbacks(this);
storage_ = NULL;
}
- URLRequestJob::Kill();
+ net::URLRequestJob::Kill();
}
}

Powered by Google App Engine
This is Rietveld 408576698