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 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 // PlzNavigate | 796 // PlzNavigate |
797 // Tells the browser to perform a navigation. | 797 // Tells the browser to perform a navigation. |
798 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, | 798 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, |
799 FrameHostMsg_BeginNavigation_Params, | 799 FrameHostMsg_BeginNavigation_Params, |
800 content::CommonNavigationParams) | 800 content::CommonNavigationParams) |
801 | 801 |
802 // Sent once a paint happens after the first non empty layout. In other words | 802 // Sent once a paint happens after the first non empty layout. In other words |
803 // after the frame has painted something. | 803 // after the frame has painted something. |
804 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) | 804 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
805 | 805 |
| 806 // Puts the browser into "tab fullscreen" mode for the sending renderer. |
| 807 // See the comment in chrome/browser/ui/browser.h for more details. |
| 808 IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, |
| 809 bool /* enter_fullscreen */) |
| 810 |
806 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 811 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
807 | 812 |
808 // Message to show/hide a popup menu using native controls. | 813 // Message to show/hide a popup menu using native controls. |
809 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 814 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
810 FrameHostMsg_ShowPopup_Params) | 815 FrameHostMsg_ShowPopup_Params) |
811 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 816 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
812 | 817 |
813 #endif | 818 #endif |
OLD | NEW |