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

Unified Diff: content/common/browser_plugin_messages.h

Issue 11035067: Add loadCommit and loadStop Event (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add LoadStop and LoadCommit Test Created 8 years, 2 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/browser_plugin_messages.h
diff --git a/content/common/browser_plugin_messages.h b/content/common/browser_plugin_messages.h
index 8d8a608a2754b54cb7e49e8137812095d655a573..ee7d403f3a8b85ab730679cf0f3c3a857c273bb4 100644
--- a/content/common/browser_plugin_messages.h
+++ b/content/common/browser_plugin_messages.h
@@ -156,11 +156,17 @@ IPC_MESSAGE_CONTROL4(BrowserPluginMsg_LoadRedirect,
bool /* is_top_level */)
// When the guest navigates, the browser process informs the embedder through
-// the BrowserPluginMsg_DidNavigate message.
-IPC_MESSAGE_CONTROL3(BrowserPluginMsg_DidNavigate,
+// the BrowserPluginMsg_LoadStop message.
+IPC_MESSAGE_CONTROL1(BrowserPluginMsg_LoadStop,
+ int /* instance_id */)
+
+// When all the guest pages have completed, the browser process informs
Charlie Reis 2012/10/08 19:03:39 These comments are backwards.
irobert 2012/10/10 23:55:16 Done.
+// the embedder through the BrowserPluginMsg_DidCommit message.
+IPC_MESSAGE_CONTROL4(BrowserPluginMsg_LoadCommit,
int /* instance_id */,
GURL /* url */,
- int /* process_id */)
+ int /* process_id */,
+ bool /* is_main_frame */)
// When the guest crashes, the browser process informs the embedder through this
// message.

Powered by Google App Engine
This is Rietveld 408576698