Index: content/common/push_messaging_messages.h |
diff --git a/content/common/push_messaging_messages.h b/content/common/push_messaging_messages.h |
index 3849c5ab0021543ef8b56486a2640fe4ff99a7d3..0578c240b3a2c9f4a7500e12013f1bd7135c3fd4 100644 |
--- a/content/common/push_messaging_messages.h |
+++ b/content/common/push_messaging_messages.h |
@@ -31,13 +31,15 @@ IPC_ENUM_TRAITS_MAX_VALUE( |
// Messages sent from the browser to the child process. |
-IPC_MESSAGE_ROUTED2(PushMessagingMsg_SubscribeFromDocumentSuccess, |
+IPC_MESSAGE_ROUTED3(PushMessagingMsg_SubscribeFromDocumentSuccess, |
int32_t /* request_id */, |
- GURL /* push_endpoint */) |
+ GURL /* push_endpoint */, |
+ std::vector<uint8_t> /* curve25519dh */) |
-IPC_MESSAGE_CONTROL2(PushMessagingMsg_SubscribeFromWorkerSuccess, |
+IPC_MESSAGE_CONTROL3(PushMessagingMsg_SubscribeFromWorkerSuccess, |
int32_t /* request_id */, |
- GURL /* push_endpoint */) |
+ GURL /* push_endpoint */, |
+ std::vector<uint8_t> /* curve25519dh */) |
IPC_MESSAGE_ROUTED2(PushMessagingMsg_SubscribeFromDocumentError, |
int32_t /* request_id */, |
@@ -56,9 +58,10 @@ IPC_MESSAGE_CONTROL3(PushMessagingMsg_UnsubscribeError, |
blink::WebPushError::ErrorType /* error_type */, |
std::string /* error_message */) |
-IPC_MESSAGE_CONTROL2(PushMessagingMsg_GetRegistrationSuccess, |
+IPC_MESSAGE_CONTROL3(PushMessagingMsg_GetRegistrationSuccess, |
int32_t /* request_id */, |
- GURL /* push_endpoint */) |
+ GURL /* push_endpoint */, |
+ std::vector<uint8_t> /* curve25519dh */) |
IPC_MESSAGE_CONTROL2(PushMessagingMsg_GetRegistrationError, |
int32_t /* request_id */, |