Index: extensions/common/extension_messages.h |
diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h |
index 307ce592ed7ed2577588901af91d8ff8739ad410..85fafbcd765f2cd8f74bfd03e7acd3ce02f2db85 100644 |
--- a/extensions/common/extension_messages.h |
+++ b/extensions/common/extension_messages.h |
@@ -500,14 +500,16 @@ IPC_MESSAGE_CONTROL2(ExtensionHostMsg_RequestForIOThread, |
ExtensionHostMsg_Request_Params) |
// Notify the browser that the given extension added a listener to an event. |
-IPC_MESSAGE_CONTROL2(ExtensionHostMsg_AddListener, |
+IPC_MESSAGE_CONTROL3(ExtensionHostMsg_AddListener, |
std::string /* extension_id */, |
+ GURL /* listener_url */, |
std::string /* name */) |
// Notify the browser that the given extension removed a listener from an |
// event. |
-IPC_MESSAGE_CONTROL2(ExtensionHostMsg_RemoveListener, |
+IPC_MESSAGE_CONTROL3(ExtensionHostMsg_RemoveListener, |
std::string /* extension_id */, |
+ GURL /* listener_url */, |
std::string /* name */) |
// Notify the browser that the given extension added a listener to an event from |