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

Side by Side Diff: net/url_request/url_request_test_util.cc

Issue 407093011: Allow URLRequests from one context to have different NetworkDelegates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix new tests Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/url_request/url_request_test_util.h" 5 #include "net/url_request/url_request_test_util.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/threading/thread.h" 10 #include "base/threading/thread.h"
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 new StaticHttpUserAgentSettings("en-us,fr", std::string())); 127 new StaticHttpUserAgentSettings("en-us,fr", std::string()));
128 } 128 }
129 if (!job_factory()) 129 if (!job_factory())
130 context_storage_.set_job_factory(new URLRequestJobFactoryImpl); 130 context_storage_.set_job_factory(new URLRequestJobFactoryImpl);
131 } 131 }
132 132
133 TestURLRequest::TestURLRequest(const GURL& url, 133 TestURLRequest::TestURLRequest(const GURL& url,
134 RequestPriority priority, 134 RequestPriority priority,
135 Delegate* delegate, 135 Delegate* delegate,
136 TestURLRequestContext* context) 136 TestURLRequestContext* context)
137 : URLRequest(url, priority, delegate, context) {} 137 : URLRequest(url, priority, delegate, context, NULL, NULL) {}
138 138
139 TestURLRequest::~TestURLRequest() { 139 TestURLRequest::~TestURLRequest() {
140 } 140 }
141 141
142 TestURLRequestContextGetter::TestURLRequestContextGetter( 142 TestURLRequestContextGetter::TestURLRequestContextGetter(
143 const scoped_refptr<base::SingleThreadTaskRunner>& network_task_runner) 143 const scoped_refptr<base::SingleThreadTaskRunner>& network_task_runner)
144 : network_task_runner_(network_task_runner) { 144 : network_task_runner_(network_task_runner) {
145 DCHECK(network_task_runner_.get()); 145 DCHECK(network_task_runner_.get());
146 } 146 }
147 147
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 URLRequestJob* job = main_intercept_job_; 642 URLRequestJob* job = main_intercept_job_;
643 main_intercept_job_ = NULL; 643 main_intercept_job_ = NULL;
644 return job; 644 return job;
645 } 645 }
646 646
647 void TestJobInterceptor::set_main_intercept_job(URLRequestJob* job) { 647 void TestJobInterceptor::set_main_intercept_job(URLRequestJob* job) {
648 main_intercept_job_ = job; 648 main_intercept_job_ = job;
649 } 649 }
650 650
651 } // namespace net 651 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/url_request_simple_job_unittest.cc ('k') | net/url_request/url_request_throttler_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698