Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4564)

Unified Diff: chrome/common/extensions/extension_messages.h

Issue 8542001: Insert default stylesheet for platform apps. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Nit from mihaip. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/common/extensions/extension_messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_messages.h
diff --git a/chrome/common/extensions/extension_messages.h b/chrome/common/extensions/extension_messages.h
index f77916bfeb5c26cecc8676517a4aa5c442d90ca2..9f63c01c4da86db0cb2819a726524b92f9318750 100644
--- a/chrome/common/extensions/extension_messages.h
+++ b/chrome/common/extensions/extension_messages.h
@@ -99,7 +99,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;
@@ -194,9 +194,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,
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/common/extensions/extension_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698