Index: content/common/frame_messages.h |
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
index a28b7dd1cef41fc6246966aa08c9c016ff023708..59362aad0d449fa072455d0045a41b9500804b35 100644 |
--- a/content/common/frame_messages.h |
+++ b/content/common/frame_messages.h |
@@ -382,6 +382,16 @@ IPC_MESSAGE_ROUTED2(FrameMsg_SetEditableSelectionOffsets, |
int /* start */, |
int /* end */) |
+// Requests a navigation to the supplied markup, in a fully sandboxed frame |
nasko
2014/08/06 10:58:49
nit: let's be a bit more clear and use something l
oystein (OOO til 10th of July)
2014/08/06 22:36:19
Done.
|
+// flagged as a transition. |
+IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, |
+ std::string /* markup */) |
+ |
+// Tells the renderer to hide the elements specified by the supplied CSS |
+// selector, and activates any exiting-transition stylesheets. |
+IPC_MESSAGE_ROUTED1(FrameMsg_BeginExitTransition, |
+ std::string /* css_selector */) |
+ |
// Tells the renderer to reload the frame, optionally ignoring the cache while |
// doing so. |
IPC_MESSAGE_ROUTED1(FrameMsg_Reload, |
@@ -681,9 +691,12 @@ IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse, |
size_t /* endOffset */) |
// Notifies the browser that the renderer has a pending navigation transition. |
-IPC_MESSAGE_CONTROL2(FrameHostMsg_SetHasPendingTransitionRequest, |
+// The string parameters are all UTF8. |
+IPC_MESSAGE_CONTROL4(FrameHostMsg_AddNavigationTransitionData, |
int /* render_frame_id */, |
- bool /* is_transition */) |
+ std::string /* origin */, |
+ std::string /* selector */, |
+ std::string /* markup */) |
// Tells the browser to perform a navigation. |
IPC_MESSAGE_ROUTED1(FrameHostMsg_BeginNavigation, |