| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index 4f433d658737bc922afb33ed17219adf95013fb3..cf992608903292a485853f120146b219f52643b1 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -481,6 +481,7 @@ class ExtensionService
|
|
|
| virtual bool OnExternalExtensionUpdateUrlFound(
|
| const std::string& id,
|
| + const std::string& install_parameter,
|
| const GURL& update_url,
|
| extensions::Manifest::Location location,
|
| int creation_flags,
|
| @@ -618,11 +619,11 @@ class ExtensionService
|
| // the extension is installed, e.g., to update event handlers on background
|
| // pages; and perform other extension install tasks before calling
|
| // AddExtension.
|
| - void AddNewOrUpdatedExtension(
|
| - const extensions::Extension* extension,
|
| - extensions::Extension::State initial_state,
|
| - extensions::BlacklistState blacklist_state,
|
| - const syncer::StringOrdinal& page_ordinal);
|
| + void AddNewOrUpdatedExtension(const extensions::Extension* extension,
|
| + extensions::Extension::State initial_state,
|
| + extensions::BlacklistState blacklist_state,
|
| + const syncer::StringOrdinal& page_ordinal,
|
| + const std::string& install_parameter);
|
|
|
| // Handles sending notification that |extension| was loaded.
|
| void NotifyExtensionLoaded(const extensions::Extension* extension);
|
|
|