| Index: chrome/browser/component_updater/chrome_component_updater_configurator.cc
|
| diff --git a/chrome/browser/component_updater/chrome_component_updater_configurator.cc b/chrome/browser/component_updater/chrome_component_updater_configurator.cc
|
| index fcc40d52a96f1323ac8f6a5f75f763dc16480d8a..b4c487f61d459dc17216f2d6875a52df7d3126b0 100644
|
| --- a/chrome/browser/component_updater/chrome_component_updater_configurator.cc
|
| +++ b/chrome/browser/component_updater/chrome_component_updater_configurator.cc
|
| @@ -62,10 +62,13 @@ class ChromeConfigurator : public update_client::Configurator {
|
| ~ChromeConfigurator() override {}
|
| };
|
|
|
| +// Allows the component updater to use non-encrypted communication with the
|
| +// update backend. The security of the update checks is enforced using
|
| +// a custom message signing protocol and it does not depend on using HTTPS.
|
| ChromeConfigurator::ChromeConfigurator(
|
| const base::CommandLine* cmdline,
|
| net::URLRequestContextGetter* url_request_getter)
|
| - : configurator_impl_(cmdline, url_request_getter) {}
|
| + : configurator_impl_(cmdline, url_request_getter, false) {}
|
|
|
| int ChromeConfigurator::InitialDelay() const {
|
| return configurator_impl_.InitialDelay();
|
|
|