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

Unified Diff: content/common/view_messages.h

Issue 1117023002: Keep event page alive when there's some Pepper plugin on it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test. Created 5 years, 7 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
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index b6258c8ee9f3e74098f6e56c40769d1600d76c21..573f1ca99c82500fd23f43c1116ec18ef0aa3e2f 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -1265,6 +1265,14 @@ IPC_MESSAGE_ROUTED3(ViewHostMsg_WebUISend,
base::ListValue /* args */)
#if defined(ENABLE_PLUGINS)
+// Notification sent from a renderer to the browser that a Pepper plugin
+// instance is attached to the page DOM.
+IPC_MESSAGE_ROUTED0(ViewHostMsg_PepperInstanceCreated)
nasko 2015/05/11 16:24:08 Please don't add any more IPCs for RenderView. It
emaxx 2015/05/18 15:06:29 Done.
+
+// Notification sent from a renderer to the browser that a Pepper plugin
+// instance is removed from the page DOM.
+IPC_MESSAGE_ROUTED0(ViewHostMsg_PepperInstanceDeleted)
+
// A renderer sends this to the browser process when it wants to create a ppapi
// plugin. The browser will create the plugin process if necessary, and will
// return a handle to the channel on success.

Powered by Google App Engine
This is Rietveld 408576698