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

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: 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
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..8a8e7f048fde2f1a8c4c1e770747b5aa2bafcdc1 100644
--- a/chrome/common/extensions/extension_messages.h
+++ b/chrome/common/extensions/extension_messages.h
@@ -198,6 +198,13 @@ IPC_MESSAGE_CONTROL1(ExtensionMsg_ActivateApplication,
IPC_MESSAGE_CONTROL1(ExtensionMsg_Loaded,
ExtensionMsg_Loaded_Params)
+// Gives the renderer a hint that a sequence of ExtensionMsg_Loaded messages
+// are about to be sent, followed by ExtensionMsg_EndBatchLoad.
+IPC_MESSAGE_CONTROL0(ExtensionMsg_StartBatchLoad)
+
+// Balances ExtensionMsg_StartBatchLoad.
+IPC_MESSAGE_CONTROL0(ExtensionMsg_EndBatchLoad)
+
// Notifies the renderer that an extension was unloaded in the browser.
IPC_MESSAGE_CONTROL1(ExtensionMsg_Unloaded,
std::string)

Powered by Google App Engine
This is Rietveld 408576698