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

Unified Diff: webkit/blob/blob_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/blob/blob_url_request_job.cc
diff --git a/webkit/blob/blob_url_request_job.cc b/webkit/blob/blob_url_request_job.cc
index 6b62605b02e152b97f1099239692a217f1f203c3..fd3fb3ea0b8f5cfa4c9ed459eaecf9d211d3a165 100644
--- a/webkit/blob/blob_url_request_job.cc
+++ b/webkit/blob/blob_url_request_job.cc
@@ -43,7 +43,7 @@ BlobURLRequestJob::BlobURLRequestJob(
net::URLRequest* request,
BlobData* blob_data,
base::MessageLoopProxy* file_thread_proxy)
- : URLRequestJob(request),
+ : net::URLRequestJob(request),
callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)),
blob_data_(blob_data),
file_thread_proxy_(file_thread_proxy),
@@ -89,7 +89,7 @@ void BlobURLRequestJob::DidStart() {
void BlobURLRequestJob::Kill() {
stream_.Close();
- URLRequestJob::Kill();
+ net::URLRequestJob::Kill();
}
void BlobURLRequestJob::ResolveFile(const FilePath& file_path) {

Powered by Google App Engine
This is Rietveld 408576698