From 56052860e0704d5da319cf157bb82a74f3049cef Mon Sep 17 00:00:00 2001 From: Pranjal Date: Tue, 13 Nov 2018 13:27:50 -0800 Subject: [PATCH] Issue 518: Enabling CRLSets auditors: @bridiver --- .../crl_set_component_installer.cc | 29 +++++++++++++++++++ common/extensions/extension_constants.cc | 1 + common/extensions/extension_constants.h | 1 + 3 files changed, 31 insertions(+) create mode 100644 chromium_src/chrome/browser/component_updater/crl_set_component_installer.cc diff --git a/chromium_src/chrome/browser/component_updater/crl_set_component_installer.cc b/chromium_src/chrome/browser/component_updater/crl_set_component_installer.cc new file mode 100644 index 000000000000..5465928199b1 --- /dev/null +++ b/chromium_src/chrome/browser/component_updater/crl_set_component_installer.cc @@ -0,0 +1,29 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#define RegisterCRLSetComponent RegisterCRLSetComponent_ChromiumImpl +#include "../../../../../chrome/browser/component_updater/crl_set_component_installer.cc" +#undef RegisterCRLSetComponent + +#include "brave/browser/extensions/brave_component_extension.h" +#include "brave/common/extensions/extension_constants.h" +#include "chrome/browser/browser_process.h" + +namespace component_updater { + +void OnCRLSetRegistered() { + ComponentsUI demand_updater; + demand_updater.OnDemandUpdate(g_browser_process->component_updater(), + crl_set_extension_id); +} + +void RegisterCRLSetComponent(ComponentUpdateService* cus, + const base::FilePath& user_data_dir) { + auto installer = base::MakeRefCounted( + std::make_unique()); + installer->Register(g_browser_process->component_updater(), + base::Bind(&OnCRLSetRegistered)); +} + +} // namespace component_updater diff --git a/common/extensions/extension_constants.cc b/common/extensions/extension_constants.cc index 78b3208b9c6b..bebb46369019 100644 --- a/common/extensions/extension_constants.cc +++ b/common/extensions/extension_constants.cc @@ -9,6 +9,7 @@ const char brave_rewards_extension_id[] = "jidkidbbcafjabdphckchenhfomhnfma"; const char brave_webtorrent_extension_id[] = "lgjmpdmojkpocjcopdikifhejkkjglho"; const char widevine_extension_id[] = "oimompecagnajdejgnnjijobebaeigek"; const char brave_sync_extension_id[] = "nomlkjnggnifocmealianaaiobmebgil"; +const char crl_set_extension_id[] = "hfnkpimlhhgieaddgfemjhofmfblmnib"; const char pdfjs_extension_id[] = "oemmndcbldboiebfnladdacbdfmadadm"; const char pdfjs_extension_name[] = "PDF Viewer (PDF.js)"; diff --git a/common/extensions/extension_constants.h b/common/extensions/extension_constants.h index 40228187868c..4ab3451b655c 100644 --- a/common/extensions/extension_constants.h +++ b/common/extensions/extension_constants.h @@ -7,6 +7,7 @@ extern const char brave_rewards_extension_id[]; extern const char brave_webtorrent_extension_id[]; extern const char widevine_extension_id[]; extern const char brave_sync_extension_id[]; +extern const char crl_set_extension_id[]; extern const char pdfjs_extension_id[]; extern const char pdfjs_extension_name[];