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

Unified Diff: content/common/frame_messages.h

Issue 435833002: Navigation transitions: Plumb data from the outgoing renderer to the incoming renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes Created 6 years, 4 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 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,

Powered by Google App Engine
This is Rietveld 408576698