| 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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 // PlzNavigate | 814 // PlzNavigate |
| 815 // Tells the browser to perform a navigation. | 815 // Tells the browser to perform a navigation. |
| 816 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, | 816 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, |
| 817 FrameHostMsg_BeginNavigation_Params, | 817 FrameHostMsg_BeginNavigation_Params, |
| 818 content::CommonNavigationParams) | 818 content::CommonNavigationParams) |
| 819 | 819 |
| 820 // Sent once a paint happens after the first non empty layout. In other words | 820 // Sent once a paint happens after the first non empty layout. In other words |
| 821 // after the frame has painted something. | 821 // after the frame has painted something. |
| 822 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 822 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| 823 | 823 |
| 824 // Puts the browser into "tab fullscreen" mode for the sending renderer. |
| 825 // See the comment in chrome/browser/ui/browser.h for more details. |
| 826 IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, |
| 827 bool /* enter_fullscreen */) |
| 828 |
| 824 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 829 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 825 | 830 |
| 826 // Message to show/hide a popup menu using native controls. | 831 // Message to show/hide a popup menu using native controls. |
| 827 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 832 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 828 FrameHostMsg_ShowPopup_Params) | 833 FrameHostMsg_ShowPopup_Params) |
| 829 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 834 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 830 | 835 |
| 831 #endif | 836 #endif |
| OLD | NEW |