Index: content/common/utility_messages.h |
diff --git a/content/common/utility_messages.h b/content/common/utility_messages.h |
index 4b197acf013a30ddac4dc7a2f220bac85199cfc4..08fd372052873137b814282cd5b7beb43d7b27e2 100644 |
--- a/content/common/utility_messages.h |
+++ b/content/common/utility_messages.h |
@@ -69,10 +69,12 @@ IPC_MESSAGE_CONTROL1(UtilityHostMsg_InjectIDBKey_Finished, |
#if defined(OS_POSIX) |
// Notifies the browser when a plugin failed to load so the two processes can |
// keep the canonical list in sync. |
-IPC_SYNC_MESSAGE_CONTROL1_0(UtilityHostMsg_LoadPluginFailed, |
+IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadPluginFailed, |
+ size_t /* index in the vector */, |
jam
2011/11/02 16:09:29
here and below, it's slightly better to send int i
Bernhard Bauer
2011/11/02 16:13:47
Oooh. Out of curiosity, what would be necessary to
Robert Sesek
2011/11/02 16:26:28
Done. Used uint32_t because I'm comparing against
|
FilePath /* path of plugin */) |
// Notifies the browser that a plugin in the vector sent by it has been loaded. |
-IPC_SYNC_MESSAGE_CONTROL1_0(UtilityHostMsg_LoadedPlugin, |
+IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadedPlugin, |
+ size_t /* index in the vector */, |
webkit::WebPluginInfo /* plugin info */) |
#endif // OS_POSIX |