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

Unified Diff: content/common/browser_plugin_messages.h

Issue 11027065: Browser plugin: Implement titleChanged event. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix for pages with no title 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 ea4d847559a79409f6bf0331cce79f92ad82a3a3..99dfcdd35be8501d19403f25e2b8994e33e897da 100644
--- a/content/common/browser_plugin_messages.h
+++ b/content/common/browser_plugin_messages.h
@@ -207,6 +207,12 @@ IPC_MESSAGE_CONTROL2(BrowserPluginMsg_LoadCommit,
IPC_MESSAGE_CONTROL1(BrowserPluginMsg_LoadStop,
int /* instance_id */)
+// When the guest changes its title, the browser process informs the
+// embedder through the BrowserPluginMsg_TitleChange message.
+IPC_MESSAGE_CONTROL2(BrowserPluginMsg_TitleChange,
+ int /* instance_id */,
+ string16 /* title */)
+
// When the guest crashes, the browser process informs the embedder through this
// message.
IPC_MESSAGE_CONTROL3(BrowserPluginMsg_GuestGone,
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_host_browsertest.cc ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698