| Index: chrome/browser/io_thread.cc
|
| diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
|
| index 80f3bea4af6d355931b6cabab647c5122413565d..68e07e05286a09f9f71a1d5b777f6fbd48912c62 100644
|
| --- a/chrome/browser/io_thread.cc
|
| +++ b/chrome/browser/io_thread.cc
|
| @@ -40,6 +40,8 @@
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/chrome_version_info.h"
|
| #include "chrome/common/pref_names.h"
|
| +#include "components/certificate_transparency/log_proofs_fetcher.h"
|
| +#include "components/certificate_transparency/new_scts_observer.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_prefs.h"
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_params.h"
|
| #include "components/policy/core/common/policy_service.h"
|
| @@ -898,6 +900,12 @@ void IOThread::Init() {
|
| globals_->proxy_script_fetcher_context.reset(
|
| ConstructProxyScriptFetcherContext(globals_, net_log_));
|
|
|
| + certificate_transparency::NewSCTsObserver* scts_observer =
|
| + new certificate_transparency::NewSCTsObserver(
|
| + new certificate_transparency::LogProofsFetcher(
|
| + globals_->system_request_context.get()));
|
| + ct_verifier->AddObserver(scts_observer);
|
| +
|
| #if defined(OS_MACOSX) && !defined(OS_IOS)
|
| // Start observing Keychain events. This needs to be done on the UI thread,
|
| // as Keychain services requires a CFRunLoop.
|
|
|