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