Index: chrome/browser/extensions/extension_service.h |
diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h |
index 99c576e9beb4c3e1fad7955a74060b447ba45e39..611056ab4a3f5f5ad33375c9a7bd0b664890e7e9 100644 |
--- a/chrome/browser/extensions/extension_service.h |
+++ b/chrome/browser/extensions/extension_service.h |
@@ -325,6 +325,9 @@ class ExtensionService |
// Loads the extension from the directory |extension_path|. |
void LoadExtension(const FilePath& extension_path); |
+ // Same as above, but for use with command line switch --load-extension=path. |
+ void LoadExtensionFromCommandLine(const FilePath& extension_path); |
+ |
// Loads any component extensions. |
void LoadComponentExtensions(); |
@@ -397,7 +400,8 @@ class ExtensionService |
void AddExtension(const Extension* extension); |
// Called by the backend when an unpacked extension has been loaded. |
- void OnLoadSingleExtension(const Extension* extension); |
+ void OnLoadSingleExtension(const Extension* extension, |
+ bool prompt_for_plugins); |
// Called by the backend when an extension has been installed. |
void OnExtensionInstalled( |