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

Unified Diff: content/common/frame_messages.h

Issue 1144463003: Remove Navigation Transitions from Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed TransitionPageHelper. Created 5 years, 7 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/child/runtime_features.cc ('k') | content/content_browser.gypi » ('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 5271e4e191c55ffc62063bf46bcfbe81b10731b8..890db001493a4518f52f11d70cfb9a3b0c29aa2c 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -101,13 +101,6 @@ IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement)
IPC_STRUCT_TRAITS_MEMBER(rect)
IPC_STRUCT_TRAITS_END()
-IPC_STRUCT_BEGIN(FrameHostMsg_AddNavigationTransitionData_Params)
- IPC_STRUCT_MEMBER(int, render_frame_id)
- IPC_STRUCT_MEMBER(std::string, allowed_destination_host_pattern)
- IPC_STRUCT_MEMBER(std::string, selector)
- IPC_STRUCT_MEMBER(std::string, markup)
- IPC_STRUCT_MEMBER(std::vector<content::TransitionElement>, elements)
-IPC_STRUCT_END()
IPC_STRUCT_BEGIN(FrameHostMsg_DidFailProvisionalLoadWithError_Params)
// Error code as reported in the DidFailProvisionalLoad callback.
@@ -660,12 +653,8 @@ IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone,
IPC_MESSAGE_ROUTED0(FrameHostMsg_FrameFocused)
// Sent when the renderer starts a provisional load for a frame.
-// |is_transition_navigation| signals that the frame has defined transition
-// elements which can be animated by the navigation destination to provide
-// a transition effect during load.
-IPC_MESSAGE_ROUTED2(FrameHostMsg_DidStartProvisionalLoadForFrame,
- GURL /* url */,
- bool /* is_transition_navigation */)
+IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartProvisionalLoadForFrame,
+ GURL /* url */)
// Sent when the renderer fails a provisional load with an error.
IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFailProvisionalLoadWithError,
@@ -935,11 +924,6 @@ IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse,
size_t, /* startOffset */
size_t /* endOffset */)
-// Notifies the browser that the renderer has a pending navigation transition.
-// The string parameters are all UTF8.
-IPC_MESSAGE_CONTROL1(FrameHostMsg_AddNavigationTransitionData,
- FrameHostMsg_AddNavigationTransitionData_Params)
-
// PlzNavigate
// Tells the browser to perform a navigation.
IPC_MESSAGE_ROUTED3(FrameHostMsg_BeginNavigation,
« no previous file with comments | « content/child/runtime_features.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698