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

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

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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"
11 #include "base/threading/worker_pool.h" 11 #include "base/threading/worker_pool.h"
12 #include "net/base/host_port_pair.h" 12 #include "net/base/host_port_pair.h"
13 #include "net/cert/cert_verifier.h" 13 #include "net/cert/cert_verifier.h"
14 #include "net/dns/mock_host_resolver.h" 14 #include "net/dns/mock_host_resolver.h"
15 #include "net/http/http_network_session.h" 15 #include "net/http/http_network_session.h"
16 #include "net/http/http_response_headers.h" 16 #include "net/http/http_response_headers.h"
17 #include "net/http/http_server_properties_impl.h" 17 #include "net/http/http_server_properties_impl.h"
18 #include "net/http/transport_security_state.h" 18 #include "net/http/transport_security_state.h"
19 #include "net/ssl/default_server_bound_cert_store.h" 19 #include "net/ssl/channel_id_service.h"
20 #include "net/ssl/server_bound_cert_service.h" 20 #include "net/ssl/default_channel_id_store.h"
21 #include "net/url_request/static_http_user_agent_settings.h" 21 #include "net/url_request/static_http_user_agent_settings.h"
22 #include "net/url_request/url_request_job_factory_impl.h" 22 #include "net/url_request/url_request_job_factory_impl.h"
23 #include "testing/gtest/include/gtest/gtest.h" 23 #include "testing/gtest/include/gtest/gtest.h"
24 24
25 namespace net { 25 namespace net {
26 26
27 namespace { 27 namespace {
28 28
29 // These constants put the NetworkDelegate events of TestNetworkDelegate 29 // These constants put the NetworkDelegate events of TestNetworkDelegate
30 // into an order. They are used in conjunction with 30 // into an order. They are used in conjunction with
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 params.network_delegate = network_delegate(); 108 params.network_delegate = network_delegate();
109 params.http_server_properties = http_server_properties(); 109 params.http_server_properties = http_server_properties();
110 params.net_log = net_log(); 110 params.net_log = net_log();
111 context_storage_.set_http_transaction_factory(new HttpCache( 111 context_storage_.set_http_transaction_factory(new HttpCache(
112 new HttpNetworkSession(params), 112 new HttpNetworkSession(params),
113 HttpCache::DefaultBackend::InMemory(0))); 113 HttpCache::DefaultBackend::InMemory(0)));
114 } 114 }
115 // In-memory cookie store. 115 // In-memory cookie store.
116 if (!cookie_store()) 116 if (!cookie_store())
117 context_storage_.set_cookie_store(new CookieMonster(NULL, NULL)); 117 context_storage_.set_cookie_store(new CookieMonster(NULL, NULL));
118 // In-memory origin bound cert service. 118 // In-memory Channel ID service.
119 if (!server_bound_cert_service()) { 119 if (!channel_id_service()) {
120 context_storage_.set_server_bound_cert_service( 120 context_storage_.set_channel_id_service(
121 new ServerBoundCertService( 121 new ChannelIDService(
122 new DefaultServerBoundCertStore(NULL), 122 new DefaultChannelIDStore(NULL),
123 base::WorkerPool::GetTaskRunner(true))); 123 base::WorkerPool::GetTaskRunner(true)));
124 } 124 }
125 if (!http_user_agent_settings()) { 125 if (!http_user_agent_settings()) {
126 context_storage_.set_http_user_agent_settings( 126 context_storage_.set_http_user_agent_settings(
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
(...skipping 509 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

Powered by Google App Engine
This is Rietveld 408576698