| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index 48ff38a65605cec89af299e27cbaa601dfd046da..3d63ef66613669b1c5f48ab46de58df42957050a 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -478,6 +478,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,
|
| @@ -615,11 +616,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);
|
|
|