Index: content/common/frame_messages.h |
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
index a28b7dd1cef41fc6246966aa08c9c016ff023708..9073dc60be3c1cac7a4b15ca885c37edd247b526 100644 |
--- a/content/common/frame_messages.h |
+++ b/content/common/frame_messages.h |
@@ -382,6 +382,12 @@ IPC_MESSAGE_ROUTED2(FrameMsg_SetEditableSelectionOffsets, |
int /* start */, |
int /* end */) |
+IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, |
Charlie Reis
2014/08/05 20:07:21
These need comments like the other IPC messages.
oystein (OOO til 10th of July)
2014/08/05 20:50:54
Done.
|
+ std::string /* markup */) |
+ |
+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 +687,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, |