| Index: chrome/common/extensions/extension_messages.h
|
| diff --git a/chrome/common/extensions/extension_messages.h b/chrome/common/extensions/extension_messages.h
|
| index 4cb6c5cf0e79102c7e90e79f659e8ccc7c27346d..1cab15ee27bd3dd90bc55a7554eae6932e17b6fa 100644
|
| --- a/chrome/common/extensions/extension_messages.h
|
| +++ b/chrome/common/extensions/extension_messages.h
|
| @@ -91,9 +91,7 @@ typedef std::map<std::string, std::string> SubstitutionMap;
|
| struct ExtensionMsg_Loaded_Params {
|
| ExtensionMsg_Loaded_Params();
|
| ~ExtensionMsg_Loaded_Params();
|
| - explicit ExtensionMsg_Loaded_Params(
|
| - const Extension* extension,
|
| - const ExtensionPermissionSet* active_permissions);
|
| + explicit ExtensionMsg_Loaded_Params(const Extension* extension);
|
|
|
| // A copy constructor is needed because this structure can end up getting
|
| // copied inside the IPC machinery on gcc <= 4.2.
|
| @@ -102,9 +100,6 @@ struct ExtensionMsg_Loaded_Params {
|
| // Creates a new extension from the data in this object.
|
| scoped_refptr<Extension> ConvertToExtension() const;
|
|
|
| - // Passes ownership to the caller.
|
| - const ExtensionPermissionSet* GetActivePermissions() const;
|
| -
|
| // The subset of the extension manifest data we send to renderers.
|
| scoped_ptr<DictionaryValue> manifest;
|
|
|
|
|