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

Unified Diff: content/common/frame_messages.h

Issue 132383005: Set correct viewport size for an out of process iframe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed obsolete test Created 6 years, 10 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/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 03471701ca785efa756754b416d694cd7ff40c2a..6bdd2e741e5c4016f93b66a0dcf49c020393adee 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -289,6 +289,11 @@ IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction,
// existing navigation.
IPC_MESSAGE_ROUTED1(FrameMsg_Navigate, FrameMsg_Navigate_Params)
+// Instructs the frame to swap out for a cross-site transition, including
+// running the unload event handler. Expects a SwapOut_ACK message when
+// finished.
+IPC_MESSAGE_ROUTED0(FrameMsg_SwapOut)
+
// -----------------------------------------------------------------------------
// Messages sent from the renderer to the browser.
@@ -426,13 +431,14 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_ReclaimCompositorResources,
IPC_MESSAGE_ROUTED1(FrameHostMsg_ForwardInputEvent,
IPC::WebInputEventPointer /* event */)
-// Instructs the frame to swap out for a cross-site transition, including
-// running the unload event handler. Expects a SwapOut_ACK message when
-// finished.
-IPC_MESSAGE_ROUTED0(FrameMsg_SwapOut)
-
// Used to tell the parent that the user right clicked on an area of the
// content area, and a context menu should be shown for it. The params
// object contains information about the node(s) that were selected when the
// user right clicked.
IPC_MESSAGE_ROUTED1(FrameHostMsg_ContextMenu, content::ContextMenuParams)
+
+// Initial drawing parameters for a child frame that has been swapped out to
+// another process.
+IPC_MESSAGE_ROUTED2(FrameHostMsg_InitializeChildFrame,
+ gfx::Rect /* frame_rect */,
+ float /* scale_factor */)
« no previous file with comments | « content/browser/frame_host/render_widget_host_view_child_frame_unittest.cc ('k') | content/common/swapped_out_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698