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

Unified Diff: content/browser/tcmalloc_internals_request_job.cc

Issue 10855209: Refactoring: ProtocolHandler::MaybeCreateJob takes NetworkDelegate as argument (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NetworkDelegate fixed almost everywhere 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
Index: content/browser/tcmalloc_internals_request_job.cc
diff --git a/content/browser/tcmalloc_internals_request_job.cc b/content/browser/tcmalloc_internals_request_job.cc
index 5b0c45b75c9256ea32c595cd9e28a2c3fbef7276..cde20061c257602e5157f75f3dbec7e2553c9545 100644
--- a/content/browser/tcmalloc_internals_request_job.cc
+++ b/content/browser/tcmalloc_internals_request_job.cc
@@ -11,6 +11,7 @@
#include "content/public/browser/render_process_host.h"
#include "content/public/common/process_type.h"
#include "net/base/net_errors.h"
+#include "net/url_request/url_request.h"
mmenke 2012/08/21 15:28:49 Why is this needed?
shalev 2012/08/22 20:34:10 Done.
namespace content {
@@ -57,7 +58,8 @@ void AboutTcmallocOutputs::DumpToHTMLTable(std::string* data) {
}
TcmallocInternalsRequestJob::TcmallocInternalsRequestJob(
- net::URLRequest* request) : net::URLRequestSimpleJob(request) {
+ net::URLRequest* request, net::NetworkDelegate* network_delegate)
+ : net::URLRequestSimpleJob(request, network_delegate) {
}
#if defined(USE_TCMALLOC)

Powered by Google App Engine
This is Rietveld 408576698