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

Unified Diff: extensions/common/extension_messages.h

Issue 811263002: Queue postMessage messages destined for a MimeHandlerView guest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@postMessage1
Patch Set: Created 6 years 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: extensions/common/extension_messages.h
diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h
index 80577c173148622047c39eba35219376e68d6370..4d181c1a41d61d4dab23df58150ef8650121e11a 100644
--- a/extensions/common/extension_messages.h
+++ b/extensions/common/extension_messages.h
@@ -554,11 +554,16 @@ IPC_MESSAGE_CONTROL1(ExtensionMsg_TransferBlobs,
IPC_MESSAGE_CONTROL1(ExtensionMsg_CreateMimeHandlerViewGuestACK,
int /* element_instance_id */)
+// Once a MimeHandlerView guest's JavaScript onload function has been called,
+// this IPC is sent to the container to notify it.
+IPC_MESSAGE_CONTROL1(ExtensionMsg_MimeHandlerViewGuestOnLoadCompleted,
+ int /* element_instance_id */)
+
// Once a RenderView proxy has been created for the guest in the embedder render
// process, this IPC informs the embedder of the proxy's routing ID.
IPC_MESSAGE_CONTROL2(ExtensionMsg_GuestAttached,
- int /* element_instance_id */,
- int /* source_routing_id */)
+ int /* element_instance_id */,
+ int /* source_routing_id */)
// This IPC tells the browser process to detach the provided
// |element_instance_id| from a GuestViewBase if it is attached to one.

Powered by Google App Engine
This is Rietveld 408576698