| Index: chrome/browser/component_updater/component_updater_prefs.cc
|
| diff --git a/chrome/browser/component_updater/component_updater_prefs.cc b/chrome/browser/component_updater/component_updater_prefs.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5a983dfb29c576ae9eb3a837b0facf4aaa199e45
|
| --- /dev/null
|
| +++ b/chrome/browser/component_updater/component_updater_prefs.cc
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/component_updater/component_updater_prefs.h"
|
| +
|
| +#include "chrome/browser/component_updater/recovery_component_installer.h"
|
| +#include "chrome/browser/component_updater/supervised_user_whitelist_installer.h"
|
| +
|
| +namespace component_updater {
|
| +
|
| +void RegisterPrefs(PrefRegistrySimple* registry) {
|
| + RegisterPrefsForRecoveryComponent(registry);
|
| + SupervisedUserWhitelistInstaller::RegisterPrefs(registry);
|
| +}
|
| +
|
| +} // namespace component_updater
|
|
|