OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |