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

Unified Diff: net/url_request/url_request_test_util.cc

Issue 51953002: [Net] Add a priority parameter to URLRequest's constructor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 2 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: net/url_request/url_request_test_util.cc
diff --git a/net/url_request/url_request_test_util.cc b/net/url_request/url_request_test_util.cc
index 8b209f9c6dc2855b22ed72ee181e677c1ed40e7c..9f9abcdc3ed307868eb1efc0ce5fc67cc0a2e273 100644
--- a/net/url_request/url_request_test_util.cc
+++ b/net/url_request/url_request_test_util.cc
@@ -127,11 +127,10 @@ void TestURLRequestContext::Init() {
}
TestURLRequest::TestURLRequest(const GURL& url,
+ RequestPriority priority,
Delegate* delegate,
- TestURLRequestContext* context,
- NetworkDelegate* network_delegate)
- : URLRequest(url, delegate, context, network_delegate) {
-}
+ TestURLRequestContext* context)
+ : URLRequest(url, priority, delegate, context) {}
TestURLRequest::~TestURLRequest() {
}
« no previous file with comments | « net/url_request/url_request_test_util.h ('k') | net/url_request/url_request_throttler_simulation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698