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

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: Fix compile error from rebase 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..5e125ad7e33df25a1a07e595de07cfdddae823c7 100644
--- a/net/url_request/url_request_test_util.cc
+++ b/net/url_request/url_request_test_util.cc
@@ -127,11 +127,11 @@ void TestURLRequestContext::Init() {
}
TestURLRequest::TestURLRequest(const GURL& url,
+ RequestPriority priority,
Delegate* delegate,
TestURLRequestContext* context,
NetworkDelegate* network_delegate)
- : URLRequest(url, delegate, context, network_delegate) {
-}
+ : URLRequest(url, priority, delegate, context, network_delegate) {}
TestURLRequest::~TestURLRequest() {
}

Powered by Google App Engine
This is Rietveld 408576698