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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 465443002: Certificate Transparency: Use component updater for EV whitelist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing unused variable. Created 6 years, 4 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 | chrome/browser/component_updater/ev_whitelist_component_installer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main.cc
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index 9e87a91609aea1d9b5b8d2710901a717b899f853..ba08b41c99542f34e7132aa587ce0750d50ea335 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -44,6 +44,7 @@
#include "chrome/browser/chrome_browser_main_extra_parts.h"
#include "chrome/browser/component_updater/cld_component_installer.h"
#include "chrome/browser/component_updater/component_updater_service.h"
+#include "chrome/browser/component_updater/ev_whitelist_component_installer.h"
#include "chrome/browser/component_updater/flash_component_installer.h"
#include "chrome/browser/component_updater/pnacl/pnacl_component_installer.h"
#include "chrome/browser/component_updater/recovery_component_installer.h"
@@ -413,6 +414,12 @@ void RegisterComponentsForUpdate() {
#endif
}
+#if !defined(OS_ANDROID)
+ // Android does not currently have the EV indicator. No need to get the
+ // EV certs whitelist on Android, then.
+ RegisterEVWhitelistComponent(cus);
+#endif
+
#if defined(OS_WIN)
ExecutePendingSwReporter(cus, g_browser_process->local_state());
#endif
« no previous file with comments | « no previous file | chrome/browser/component_updater/ev_whitelist_component_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698