| 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 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 // PlzNavigate | 829 // PlzNavigate |
| 830 // Tells the browser to perform a navigation. | 830 // Tells the browser to perform a navigation. |
| 831 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, | 831 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, |
| 832 FrameHostMsg_BeginNavigation_Params, | 832 FrameHostMsg_BeginNavigation_Params, |
| 833 content::CommonNavigationParams) | 833 content::CommonNavigationParams) |
| 834 | 834 |
| 835 // Sent once a paint happens after the first non empty layout. In other words | 835 // Sent once a paint happens after the first non empty layout. In other words |
| 836 // after the frame has painted something. | 836 // after the frame has painted something. |
| 837 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 837 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| 838 | 838 |
| 839 // Puts the browser into "tab fullscreen" mode for the sending renderer. |
| 840 // See the comment in chrome/browser/ui/browser.h for more details. |
| 841 IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, bool /* enter_fullscreen */) |
| 842 |
| 839 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 843 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 840 | 844 |
| 841 // Message to show/hide a popup menu using native controls. | 845 // Message to show/hide a popup menu using native controls. |
| 842 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 846 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 843 FrameHostMsg_ShowPopup_Params) | 847 FrameHostMsg_ShowPopup_Params) |
| 844 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 848 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 845 | 849 |
| 846 #endif | 850 #endif |
| OLD | NEW |