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

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 comment and Windows compile. 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..7694a26e9c5ed259e66ca36fc0b04c513a3782d7 100644
--- a/content/common/browser_plugin_messages.h
+++ b/content/common/browser_plugin_messages.h
@@ -162,6 +162,12 @@ IPC_MESSAGE_CONTROL3(BrowserPluginMsg_DidNavigate,
GURL /* url */,
int /* process_id */)
+// When the guest changes its title, the browser process informs the
+// embedder through the BrowserPluginMsg_TitleChanged message.
+IPC_MESSAGE_CONTROL2(BrowserPluginMsg_TitleChanged,
+ int /* instance_id */,
+ string16 /* title */)
+
// When the guest crashes, the browser process informs the embedder through this
// message.
IPC_MESSAGE_CONTROL1(BrowserPluginMsg_GuestCrashed,

Powered by Google App Engine
This is Rietveld 408576698