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

Side by Side Diff: content/common/frame_messages.h

Issue 775843004: Navigation transitions (web to native app): Revert exit transition (Chrome side) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for interacting with frames. 5 // IPC messages for interacting with frames.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/common/content_param_traits.h" 9 #include "content/common/content_param_traits.h"
10 #include "content/common/frame_message_enums.h" 10 #include "content/common/frame_message_enums.h"
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 // attributes. 445 // attributes.
446 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, 446 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView,
447 std::string /* markup */) 447 std::string /* markup */)
448 448
449 // Tells the renderer to hide the elements specified by the supplied CSS 449 // Tells the renderer to hide the elements specified by the supplied CSS
450 // selector, and activates any exiting-transition stylesheets. 450 // selector, and activates any exiting-transition stylesheets.
451 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition, 451 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition,
452 std::string /* css_selector */, 452 std::string /* css_selector */,
453 bool /* exit_to_native_app */) 453 bool /* exit_to_native_app */)
454 454
455 // Tell the renderer to revert the exit transition done before
456 IPC_MESSAGE_ROUTED0(FrameMsg_RevertExitTransition)
457
455 // Tell the renderer to hide transition elements. 458 // Tell the renderer to hide transition elements.
456 IPC_MESSAGE_ROUTED1(FrameMsg_HideTransitionElements, 459 IPC_MESSAGE_ROUTED1(FrameMsg_HideTransitionElements,
457 std::string /* css_selector */) 460 std::string /* css_selector */)
458 461
459 // Tell the renderer to hide transition elements. 462 // Tell the renderer to hide transition elements.
460 IPC_MESSAGE_ROUTED1(FrameMsg_ShowTransitionElements, 463 IPC_MESSAGE_ROUTED1(FrameMsg_ShowTransitionElements,
461 std::string /* css_selector */) 464 std::string /* css_selector */)
462 465
463 // Tells the renderer to reload the frame, optionally ignoring the cache while 466 // Tells the renderer to reload the frame, optionally ignoring the cache while
464 // doing so. 467 // doing so.
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) 807 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint)
805 808
806 #if defined(OS_MACOSX) || defined(OS_ANDROID) 809 #if defined(OS_MACOSX) || defined(OS_ANDROID)
807 810
808 // Message to show/hide a popup menu using native controls. 811 // Message to show/hide a popup menu using native controls.
809 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 812 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
810 FrameHostMsg_ShowPopup_Params) 813 FrameHostMsg_ShowPopup_Params)
811 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 814 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
812 815
813 #endif 816 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698