Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1389)

Unified Diff: chrome/browser/extensions/extension_system_impl.h

Issue 1890163004: extensions: Abstract out install delay strategy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 b6bb19bcc81f94831a27e04f905ece10e41b875e..d6b2e1f58815a1fd55eec0c848a0d8989795fa71 100644
--- a/chrome/browser/extensions/extension_system_impl.h
+++ b/chrome/browser/extensions/extension_system_impl.h
@@ -21,6 +21,7 @@ class ExtensionSystemSharedFactory;
class NavigationObserver;
class StateStoreNotificationObserver;
class UninstallPingSender;
+class UpdateInstallDelayer;
class ValueStoreFactory;
class ValueStoreFactoryImpl;
@@ -80,6 +81,7 @@ class ExtensionSystemImpl : public ExtensionSystem {
virtual void InitPrefs();
// This must not be called until all the providers have been created.
void RegisterManagementPolicyProviders();
+ void InitInstallDelayers();
void Init(bool extensions_enabled);
// KeyedService implementation.
@@ -122,6 +124,7 @@ class ExtensionSystemImpl : public ExtensionSystem {
scoped_refptr<InfoMap> extension_info_map_;
std::unique_ptr<QuotaService> quota_service_;
std::unique_ptr<AppSorting> app_sorting_;
+ std::unique_ptr<UpdateInstallDelayer> update_install_delayer_;
// For verifying the contents of extensions read from disk.
scoped_refptr<ContentVerifier> content_verifier_;

Powered by Google App Engine
This is Rietveld 408576698