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

Unified Diff: webkit/blob/view_blob_internals_job.cc

Issue 10855209: Refactoring: ProtocolHandler::MaybeCreateJob takes NetworkDelegate as argument (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Latest merge Created 8 years, 4 months 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 | « webkit/blob/view_blob_internals_job.h ('k') | webkit/fileapi/file_system_dir_url_request_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/blob/view_blob_internals_job.cc
diff --git a/webkit/blob/view_blob_internals_job.cc b/webkit/blob/view_blob_internals_job.cc
index 03029efd283cc8d85bb2feb2c0a2ee972eacdb6a..dfbf3a0668843f84ebaf816dc5461fe72ac95991 100644
--- a/webkit/blob/view_blob_internals_job.cc
+++ b/webkit/blob/view_blob_internals_job.cc
@@ -98,8 +98,10 @@ void AddHTMLButton(const std::string& title,
namespace webkit_blob {
ViewBlobInternalsJob::ViewBlobInternalsJob(
- net::URLRequest* request, BlobStorageController* blob_storage_controller)
- : net::URLRequestSimpleJob(request),
+ net::URLRequest* request,
+ net::NetworkDelegate* network_delegate,
+ BlobStorageController* blob_storage_controller)
+ : net::URLRequestSimpleJob(request, network_delegate),
blob_storage_controller_(blob_storage_controller),
ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) {
}
« no previous file with comments | « webkit/blob/view_blob_internals_job.h ('k') | webkit/fileapi/file_system_dir_url_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698