Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2767)

Unified Diff: chrome/common/render_messages.h

Issue 2154773002: Implement Just-In-Time Flash updates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git pull && gclient sync Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/plugins/plugin_observer.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « chrome/browser/plugins/plugin_observer.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698