| Index: chrome/browser/extensions/extension_prefs.h
|
| diff --git a/chrome/browser/extensions/extension_prefs.h b/chrome/browser/extensions/extension_prefs.h
|
| index 1a03127c30befc314b25dd301bf60f68336a6d23..4b6c308f81535598a13729a1f345a4578a618b16 100644
|
| --- a/chrome/browser/extensions/extension_prefs.h
|
| +++ b/chrome/browser/extensions/extension_prefs.h
|
| @@ -16,6 +16,7 @@
|
| #include "chrome/browser/extensions/blacklist.h"
|
| #include "chrome/browser/extensions/extension_scoped_prefs.h"
|
| #include "chrome/browser/prefs/scoped_user_pref_update.h"
|
| +#include "chrome/browser/ui/app_list/app_list_extension_sorting.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "components/browser_context_keyed_service/browser_context_keyed_service.h"
|
| #include "extensions/common/url_pattern_set.h"
|
| @@ -480,6 +481,11 @@ class ExtensionPrefs : public ExtensionScopedPrefs,
|
| return extension_sorting_.get();
|
| }
|
|
|
| + // The ordering of apps in the app list.
|
| + AppListExtensionSorting* app_list_extension_sorting() const {
|
| + return app_list_extension_sorting_.get();
|
| + }
|
| +
|
| // Describes the URLs that are able to install extensions. See
|
| // prefs::kExtensionAllowedInstallSites for more information.
|
| URLPatternSet GetAllowedInstallSites();
|
| @@ -613,6 +619,8 @@ class ExtensionPrefs : public ExtensionScopedPrefs,
|
| // properties.
|
| scoped_ptr<ExtensionSorting> extension_sorting_;
|
|
|
| + scoped_ptr<AppListExtensionSorting> app_list_extension_sorting_;
|
| +
|
| scoped_refptr<ContentSettingsStore> content_settings_store_;
|
|
|
| scoped_ptr<TimeProvider> time_provider_;
|
|
|