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

Unified Diff: content/common/frame_messages.h

Issue 974723002: OOPIF: Replicate dynamic window.name updates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Nasko's nits Created 5 years, 9 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
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index e03f63c38086f060909eb0d5d0b973d817cbaa63..eb7c02300b1d842fadd882fbacd8264181255f94 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -510,6 +510,10 @@ IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad)
// Notifies the frame that its parent has changed the frame's sandbox flags.
IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, content::SandboxFlags)
+// Update a proxy's window.name property. Used when the frame's name is
+// changed in another process.
+IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */)
+
#if defined(OS_ANDROID)
// External popup menus.
@@ -614,6 +618,9 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading,
// Sent when the renderer is done loading a page.
IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading)
+// Sent when the frame changes its window.name.
+IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeName, std::string /* name */)
+
// Sent when the renderer changed the progress of a load.
IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress,
double /* load_progress */)
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698