Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: content/common/frame_messages.h

Issue 789533002: Fullscreen: make fullscreen requests come from RenderFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make try happy Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl_unittest.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698