| Index: chrome/browser/extensions/component_loader.h
|
| diff --git a/chrome/browser/extensions/component_loader.h b/chrome/browser/extensions/component_loader.h
|
| index 886f21f852daf3e4e6317987e1ecad486f5592e1..c9ef3c4b414e78013816c8ebefa321b0b7a3be94 100644
|
| --- a/chrome/browser/extensions/component_loader.h
|
| +++ b/chrome/browser/extensions/component_loader.h
|
| @@ -10,7 +10,6 @@
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/gtest_prod_util.h"
|
| -#include "base/prefs/pref_change_registrar.h"
|
| #include "base/values.h"
|
|
|
| class ExtensionServiceInterface;
|
| @@ -83,8 +82,6 @@ class ComponentLoader {
|
| // platforms this |skip_session_components| is expected to be unset.
|
| void AddDefaultComponentExtensions(bool skip_session_components);
|
|
|
| - static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry);
|
| -
|
| // Parse the given JSON manifest. Returns NULL if it cannot be parsed, or if
|
| // if the result is not a DictionaryValue.
|
| DictionaryValue* ParseManifest(const std::string& manifest_contents) const;
|
| @@ -122,9 +119,6 @@ class ComponentLoader {
|
| void AddFileManagerExtension();
|
| void AddImageLoaderExtension();
|
|
|
| - // Add the enterprise webstore extension, or reload it if already loaded.
|
| - void AddOrReloadEnterpriseWebStore();
|
| -
|
| void AddChromeApp();
|
| void AddKeyboardApp();
|
|
|
| @@ -140,8 +134,6 @@ class ComponentLoader {
|
| typedef std::vector<ComponentExtensionInfo> RegisteredComponentExtensions;
|
| RegisteredComponentExtensions component_extensions_;
|
|
|
| - PrefChangeRegistrar pref_change_registrar_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(ComponentLoader);
|
| };
|
|
|
|
|