summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/extension_messages.h
diff options
context:
space:
mode:
authormiket@chromium.org <miket@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 02:17:53 +0000
committermiket@chromium.org <miket@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 02:17:53 +0000
commit9776e82e6f0c0b011007b12dc5e14b31e30da62b (patch)
treef43f2a119f2d3fcb14fe5b890440900b375123a7 /chrome/common/extensions/extension_messages.h
parent4e86b6e1e67ef8cb2ff2770dfe4b7c87d09d85d8 (diff)
downloadchromium_src-9776e82e6f0c0b011007b12dc5e14b31e30da62b.zip
chromium_src-9776e82e6f0c0b011007b12dc5e14b31e30da62b.tar.gz
chromium_src-9776e82e6f0c0b011007b12dc5e14b31e30da62b.tar.bz2
Insert default stylesheet for platform apps.
Review URL: http://codereview.chromium.org/8542001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension_messages.h')
-rw-r--r--chrome/common/extensions/extension_messages.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/extensions/extension_messages.h b/chrome/common/extensions/extension_messages.h
index 2973259..2ca8c28 100644
--- a/chrome/common/extensions/extension_messages.h
+++ b/chrome/common/extensions/extension_messages.h
@@ -107,7 +107,7 @@ struct ExtensionMsg_Loaded_Params {
scoped_refptr<Extension> ConvertToExtension() const;
// The subset of the extension manifest data we send to renderers.
- scoped_ptr<DictionaryValue> manifest;
+ linked_ptr<DictionaryValue> manifest;
// The location the extension was installed from.
Extension::Location location;
@@ -202,9 +202,9 @@ IPC_MESSAGE_CONTROL1(ExtensionMsg_ActivateExtension,
IPC_MESSAGE_CONTROL1(ExtensionMsg_ActivateApplication,
std::string /* extension_id */)
-// Notifies the renderer that an extension was loaded in the browser.
+// Notifies the renderer that extensions were loaded in the browser.
IPC_MESSAGE_CONTROL1(ExtensionMsg_Loaded,
- ExtensionMsg_Loaded_Params)
+ std::vector<ExtensionMsg_Loaded_Params>)
// Notifies the renderer that an extension was unloaded in the browser.
IPC_MESSAGE_CONTROL1(ExtensionMsg_Unloaded,