Chromium Code Reviews| Index: chrome/browser/profiles/off_the_record_profile_io_data.cc |
| diff --git a/chrome/browser/profiles/off_the_record_profile_io_data.cc b/chrome/browser/profiles/off_the_record_profile_io_data.cc |
| index 221eda7ed8a2470b692a5a341b949ef377cd31cd..3bb5d5ef6564c6dd928e026b0a01eef558f3abd8 100644 |
| --- a/chrome/browser/profiles/off_the_record_profile_io_data.cc |
| +++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc |
| @@ -34,8 +34,8 @@ |
| #include "net/http/http_cache.h" |
| #include "net/http/http_network_session.h" |
| #include "net/http/http_server_properties_impl.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/url_request_job_factory_impl.h" |
| #include "webkit/browser/database/database_tracker.h" |
| @@ -216,12 +216,12 @@ void OffTheRecordProfileIOData::InitializeInternal( |
| main_context->set_http_server_properties(http_server_properties()); |
| // For incognito, we use a non-persistent server bound cert store. |
|
wtc
2014/07/01 19:50:51
server bound cert => channel ID
Ryan Hamilton
2014/07/21 19:12:07
Done.
|
| - net::ServerBoundCertService* server_bound_cert_service = |
| - new net::ServerBoundCertService( |
| - new net::DefaultServerBoundCertStore(NULL), |
| + net::ChannelIDService* channel_id_service = |
| + new net::ChannelIDService( |
| + new net::DefaultChannelIDStore(NULL), |
| base::WorkerPool::GetTaskRunner(true)); |
| - set_server_bound_cert_service(server_bound_cert_service); |
| - main_context->set_server_bound_cert_service(server_bound_cert_service); |
| + set_channel_id_service(channel_id_service); |
| + main_context->set_channel_id_service(channel_id_service); |
| using content::CookieStoreConfig; |
| main_context->set_cookie_store( |