| 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 // Requests a navigation to the supplied markup, in an iframe with sandbox | 432 // Requests a navigation to the supplied markup, in an iframe with sandbox |
| 433 // attributes. | 433 // attributes. |
| 434 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, | 434 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, |
| 435 std::string /* markup */) | 435 std::string /* markup */) |
| 436 | 436 |
| 437 // Tells the renderer to hide the elements specified by the supplied CSS | 437 // Tells the renderer to hide the elements specified by the supplied CSS |
| 438 // selector, and activates any exiting-transition stylesheets. | 438 // selector, and activates any exiting-transition stylesheets. |
| 439 IPC_MESSAGE_ROUTED1(FrameMsg_BeginExitTransition, | 439 IPC_MESSAGE_ROUTED1(FrameMsg_BeginExitTransition, |
| 440 std::string /* css_selector */) | 440 std::string /* css_selector */) |
| 441 | 441 |
| 442 // Tell the renderer to hide transition elements. |
| 443 IPC_MESSAGE_ROUTED1(FrameMsg_HideTransitionElements, |
| 444 std::string /* css_selector */) |
| 445 |
| 446 // Tell the renderer to hide transition elements. |
| 447 IPC_MESSAGE_ROUTED1(FrameMsg_ShowTransitionElements, |
| 448 std::string /* css_selector */) |
| 449 |
| 442 // Tells the renderer to reload the frame, optionally ignoring the cache while | 450 // Tells the renderer to reload the frame, optionally ignoring the cache while |
| 443 // doing so. | 451 // doing so. |
| 444 IPC_MESSAGE_ROUTED1(FrameMsg_Reload, | 452 IPC_MESSAGE_ROUTED1(FrameMsg_Reload, |
| 445 bool /* ignore_cache */) | 453 bool /* ignore_cache */) |
| 446 | 454 |
| 447 // Notifies the color chooser client that the user selected a color. | 455 // Notifies the color chooser client that the user selected a color. |
| 448 IPC_MESSAGE_ROUTED2(FrameMsg_DidChooseColorResponse, unsigned, SkColor) | 456 IPC_MESSAGE_ROUTED2(FrameMsg_DidChooseColorResponse, unsigned, SkColor) |
| 449 | 457 |
| 450 // Notifies the color chooser client that the color chooser has ended. | 458 // Notifies the color chooser client that the color chooser has ended. |
| 451 IPC_MESSAGE_ROUTED1(FrameMsg_DidEndColorChooser, unsigned) | 459 IPC_MESSAGE_ROUTED1(FrameMsg_DidEndColorChooser, unsigned) |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 791 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| 784 | 792 |
| 785 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 793 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 786 | 794 |
| 787 // Message to show/hide a popup menu using native controls. | 795 // Message to show/hide a popup menu using native controls. |
| 788 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 796 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 789 FrameHostMsg_ShowPopup_Params) | 797 FrameHostMsg_ShowPopup_Params) |
| 790 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 798 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 791 | 799 |
| 792 #endif | 800 #endif |
| OLD | NEW |