| Index: chrome/common/render_messages.h
|
| diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
|
| index 11069cfe144ad43bc6efd12e7f222c9810025066..66dc1aa7c51f4957706bddf473b94ca3ff65a3d1 100644
|
| --- a/chrome/common/render_messages.h
|
| +++ b/chrome/common/render_messages.h
|
| @@ -41,6 +41,7 @@ enum class ChromeViewHostMsg_GetPluginInfo_Status {
|
| kOutdatedBlocked,
|
| kOutdatedDisallowed,
|
| kPlayImportantContent,
|
| + kComponentUpdateRequired,
|
| kUnauthorized,
|
| };
|
|
|
| @@ -408,6 +409,18 @@ IPC_MESSAGE_ROUTED1(ChromeViewMsg_ErrorDownloadingPlugin,
|
| std::string /* message */)
|
| #endif // defined(ENABLE_PLUGIN_INSTALLATION)
|
|
|
| +// Notifies a missing plugin placeholder that we have finished component-
|
| +// updating the plug-in.
|
| +IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateSuccess)
|
| +
|
| +// Notifies a missing plugin placeholder that we have failed to component-update
|
| +// the plug-in.
|
| +IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateFailure)
|
| +
|
| +// Notifies a missing plugin placeholder that we have started the component
|
| +// download.
|
| +IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateDownloading)
|
| +
|
| // Notifies a missing plugin placeholder that the user cancelled downloading
|
| // the plugin.
|
| IPC_MESSAGE_ROUTED0(ChromeViewMsg_CancelledDownloadingPlugin)
|
| @@ -447,6 +460,12 @@ IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin,
|
| int /* placeholder ID */,
|
| std::string /* plugin group identifier */)
|
|
|
| +// Notifies when a plugin couldn't be loaded because it requires a component
|
| +// update.
|
| +IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedComponentUpdatedPlugin,
|
| + int /* placeholder ID */,
|
| + std::string /* plugin group identifier */)
|
| +
|
| // Notifies when a plugin couldn't be loaded because it requires
|
| // user authorization.
|
| IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin,
|
|
|