Index: chrome/browser/extensions/extension_system_impl.h |
diff --git a/chrome/browser/extensions/extension_system_impl.h b/chrome/browser/extensions/extension_system_impl.h |
index 0a3226a1a7bb6a06f20056587884a5d0c58d94ee..dc6ef6965bea1cbfebfa31873c0a82b44988f66a 100644 |
--- a/chrome/browser/extensions/extension_system_impl.h |
+++ b/chrome/browser/extensions/extension_system_impl.h |
@@ -43,6 +43,7 @@ class ExtensionSystemImpl : public ExtensionSystem { |
StateStore* rules_store() override; // shared |
InfoMap* info_map() override; // shared |
QuotaService* quota_service() override; // shared |
+ AppSorting* app_sorting() override; // shared |
void RegisterExtensionWithRequestContexts( |
const Extension* extension, |
@@ -84,6 +85,7 @@ class ExtensionSystemImpl : public ExtensionSystem { |
SharedUserScriptMaster* shared_user_script_master(); |
InfoMap* info_map(); |
QuotaService* quota_service(); |
+ AppSorting* app_sorting(); |
const OneShotEvent& ready() const { return ready_; } |
ContentVerifier* content_verifier(); |
@@ -107,6 +109,7 @@ class ExtensionSystemImpl : public ExtensionSystem { |
// extension_info_map_ needs to outlive process_manager_. |
scoped_refptr<InfoMap> extension_info_map_; |
scoped_ptr<QuotaService> quota_service_; |
+ scoped_ptr<AppSorting> app_sorting_; |
// For verifying the contents of extensions read from disk. |
scoped_refptr<ContentVerifier> content_verifier_; |