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

Unified Diff: chrome/browser/profiles/off_the_record_profile_io_data.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 side-by-side diff with in-line comments
Download patch
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..830347a3e7f2cdc11752d988546600f1bff9f265 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"
@@ -215,13 +215,13 @@ void OffTheRecordProfileIOData::InitializeInternal(
new net::HttpServerPropertiesImpl()));
main_context->set_http_server_properties(http_server_properties());
- // For incognito, we use a non-persistent server bound cert store.
- net::ServerBoundCertService* server_bound_cert_service =
- new net::ServerBoundCertService(
- new net::DefaultServerBoundCertStore(NULL),
+ // For incognito, we use a non-persistent channel ID store.
+ 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(

Powered by Google App Engine
This is Rietveld 408576698