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

Unified Diff: chrome/browser/profiles/off_the_record_profile_io_data.cc

Issue 411333002: Certificate Transparency: Check SCTs in incognito mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..8d7a4bb792ef323e8ca450822ddc589d4889cbec 100644
--- a/chrome/browser/profiles/off_the_record_profile_io_data.cc
+++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc
@@ -209,6 +209,9 @@ void OffTheRecordProfileIOData::InitializeInternal(
main_context->set_throttler_manager(
io_thread_globals->throttler_manager.get());
+ main_context->set_cert_transparency_verifier(
+ io_thread_globals->cert_transparency_verifier.get());
+
// For incognito, we use the default non-persistent HttpServerPropertiesImpl.
set_http_server_properties(
scoped_ptr<net::HttpServerProperties>(
@@ -287,6 +290,9 @@ void OffTheRecordProfileIOData::
extensions_context->set_throttler_manager(
io_thread_globals->throttler_manager.get());
+ extensions_context->set_cert_transparency_verifier(
+ io_thread_globals->cert_transparency_verifier.get());
+
// All we care about for extensions is the cookie store. For incognito, we
// use a non-persistent cookie store.
net::CookieMonster* extensions_cookie_store =
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698