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

Unified Diff: net/url_request/url_request_about_job.cc

Issue 10534100: Decouple URLRequestJob from URLRequestContext; access NetworkDelegate as a contructor parameter. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merged with latest sync Created 8 years, 6 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 | « net/url_request/url_request.cc ('k') | net/url_request/url_request_error_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_about_job.cc
diff --git a/net/url_request/url_request_about_job.cc b/net/url_request/url_request_about_job.cc
index f305909638340093241c59f73fd4cc913f6afbcc..949deaf95eb7124807163fdab379daffdbcbf2ff 100644
--- a/net/url_request/url_request_about_job.cc
+++ b/net/url_request/url_request_about_job.cc
@@ -11,11 +11,13 @@
#include "base/bind.h"
#include "base/compiler_specific.h"
#include "base/message_loop.h"
+#include "net/url_request/url_request.h"
+#include "net/url_request/url_request_context.h"
namespace net {
URLRequestAboutJob::URLRequestAboutJob(URLRequest* request)
- : URLRequestJob(request),
+ : URLRequestJob(request, request->context()->network_delegate()),
ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) {
}
« no previous file with comments | « net/url_request/url_request.cc ('k') | net/url_request/url_request_error_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698