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

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

Issue 300853008: Refactor external_install_ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: back to EXTENSION_REMOVED notification Created 6 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_service.h
diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
index 5159162fde6450e19efb907f8514f927504aca13..7342c2aca12227579d531880300280eceed8be12 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -52,6 +52,7 @@ class ExtensionRegistry;
class ExtensionSystem;
class ExtensionUpdater;
class OneShotEvent;
+class ExternalInstallManager;
class SharedModuleService;
class UpdateObserver;
} // namespace extensions
@@ -387,6 +388,10 @@ class ExtensionService
return shared_module_service_.get();
}
+ extensions::ExternalInstallManager* external_install_manager() {
+ return external_install_manager_.get();
+ }
+
//////////////////////////////////////////////////////////////////////////////
// For Testing
@@ -676,6 +681,10 @@ class ExtensionService
// extensions.
scoped_ptr<extensions::ExtensionErrorController> error_controller_;
+ // The manager for extensions that were externally installed that is
+ // responsible for prompting the user about suspicious extensions.
+ scoped_ptr<extensions::ExternalInstallManager> external_install_manager_;
+
// Sequenced task runner for extension related file operations.
scoped_refptr<base::SequencedTaskRunner> file_task_runner_;
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698