Index: content/common/utility_messages.h |
diff --git a/content/common/utility_messages.h b/content/common/utility_messages.h |
index a76986ede7c3703c7bf919b16b9f8a3efd3cbb5b..c05bbb7ddab10c4b772f3b9949ce52dcd7b46af6 100644 |
--- a/content/common/utility_messages.h |
+++ b/content/common/utility_messages.h |
@@ -28,27 +28,3 @@ IPC_MESSAGE_CONTROL0(UtilityMsg_BatchMode_Started) |
// Tells the utility process that it can shutdown. |
IPC_MESSAGE_CONTROL0(UtilityMsg_BatchMode_Finished) |
- |
-#if defined(OS_POSIX) && defined(ENABLE_PLUGINS) |
-// Tells the utility process to load each plugin in the order specified by the |
-// vector. It will respond after each load with the WebPluginInfo. |
-IPC_MESSAGE_CONTROL1(UtilityMsg_LoadPlugins, |
- std::vector<base::FilePath> /* plugin paths */) |
-#endif |
- |
-//------------------------------------------------------------------------------ |
-// Utility process host messages: |
-// These are messages from the utility process to the browser. |
- |
-#if defined(OS_POSIX) && defined(ENABLE_PLUGINS) |
-// Notifies the browser when a plugin failed to load so the two processes can |
-// keep the canonical list in sync. |
-IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadPluginFailed, |
- uint32_t /* index in the vector */, |
- base::FilePath /* path of plugin */) |
- |
-// Notifies the browser that a plugin in the vector sent by it has been loaded. |
-IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadedPlugin, |
- uint32_t /* index in the vector */, |
- content::WebPluginInfo /* plugin info */) |
-#endif |