Index: chrome/common/extensions/extension_messages.h |
diff --git a/chrome/common/extensions/extension_messages.h b/chrome/common/extensions/extension_messages.h |
index ee69e1af6e587cf9b3bf19f4d7887676abebacbc..13b5fc3d396ab4b4e45ad057bd3cb42c74c058a6 100644 |
--- a/chrome/common/extensions/extension_messages.h |
+++ b/chrome/common/extensions/extension_messages.h |
@@ -326,6 +326,19 @@ IPC_MESSAGE_ROUTED3(ExtensionMsg_InlineWebstoreInstallResponse, |
bool /* whether the install was successful */, |
std::string /* error */) |
+// Sent by the renderer when an App is requesting permission to send server |
+// pushed notifications. |
+IPC_MESSAGE_ROUTED3(ExtensionHostMsg_GetAppNotifyChannel, |
+ int32 /* request_id */, |
+ GURL /* requestor_url */, |
+ std::string /* client_id */) |
+ |
+// Response to the renderer for the above message. |
+IPC_MESSAGE_ROUTED3(ExtensionMsg_GetAppNotifyChannelResponse, |
+ int32 /* request_id */, |
+ std::string /* channel_id */, |
+ std::string /* error */) |
+ |
// Deliver a message sent with ExtensionHostMsg_PostMessage. |
IPC_MESSAGE_ROUTED2(ExtensionMsg_DeliverMessage, |
int /* target_port_id */, |