| 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 e4a7edd1be1e7dbd3969aa7a013e1a00062b83f4..394fe9ec274c0866dae6fde7e38b2dbaf29e7266 100644
|
| --- a/net/url_request/url_request_test_util.cc
|
| +++ b/net/url_request/url_request_test_util.cc
|
| @@ -16,8 +16,8 @@
|
| #include "net/http/http_response_headers.h"
|
| #include "net/http/http_server_properties_impl.h"
|
| #include "net/http/transport_security_state.h"
|
| -#include "net/ssl/default_server_bound_cert_store.h"
|
| -#include "net/ssl/server_bound_cert_service.h"
|
| +#include "net/ssl/channel_id_service.h"
|
| +#include "net/ssl/default_channel_id_store.h"
|
| #include "net/url_request/static_http_user_agent_settings.h"
|
| #include "net/url_request/url_request_job_factory_impl.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -114,11 +114,11 @@ void TestURLRequestContext::Init() {
|
| // In-memory cookie store.
|
| if (!cookie_store())
|
| context_storage_.set_cookie_store(new CookieMonster(NULL, NULL));
|
| - // In-memory origin bound cert service.
|
| - if (!server_bound_cert_service()) {
|
| - context_storage_.set_server_bound_cert_service(
|
| - new ServerBoundCertService(
|
| - new DefaultServerBoundCertStore(NULL),
|
| + // In-memory Channel ID service.
|
| + if (!channel_id_service()) {
|
| + context_storage_.set_channel_id_service(
|
| + new ChannelIDService(
|
| + new DefaultChannelIDStore(NULL),
|
| base::WorkerPool::GetTaskRunner(true)));
|
| }
|
| if (!http_user_agent_settings()) {
|
|
|