| Index: chrome/browser/component_updater/supervised_user_whitelist_installer.cc
|
| diff --git a/chrome/browser/component_updater/supervised_user_whitelist_installer.cc b/chrome/browser/component_updater/supervised_user_whitelist_installer.cc
|
| index 2fe544d6886ea22c1664ca9fc8817f13f0f486b7..42f3ed6738135082db5ee423da351f177df17f7f 100644
|
| --- a/chrome/browser/component_updater/supervised_user_whitelist_installer.cc
|
| +++ b/chrome/browser/component_updater/supervised_user_whitelist_installer.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/component_updater/supervised_user_whitelist_installer.h"
|
|
|
| #include <stddef.h>
|
| +#include <map>
|
| #include <utility>
|
|
|
| #include "base/bind.h"
|
| @@ -248,6 +249,7 @@ class SupervisedUserWhitelistComponentInstallerTraits
|
| bool VerifyInstallation(const base::DictionaryValue& manifest,
|
| const base::FilePath& install_dir) const override;
|
| bool CanAutoUpdate() const override;
|
| + bool RequiresNetworkEncryption() const override;
|
| bool OnCustomInstall(const base::DictionaryValue& manifest,
|
| const base::FilePath& install_dir) override;
|
| void ComponentReady(const base::Version& version,
|
| @@ -276,6 +278,11 @@ bool SupervisedUserWhitelistComponentInstallerTraits::CanAutoUpdate() const {
|
| return true;
|
| }
|
|
|
| +bool SupervisedUserWhitelistComponentInstallerTraits::
|
| + RequiresNetworkEncryption() const {
|
| + return true;
|
| +}
|
| +
|
| bool SupervisedUserWhitelistComponentInstallerTraits::OnCustomInstall(
|
| const base::DictionaryValue& manifest,
|
| const base::FilePath& install_dir) {
|
|
|