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

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

Issue 857213003: Refactor sudden termination (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits Created 5 years, 10 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) 840 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint)
841 841
842 // Sent as a response to FrameMsg_FlushVisualStateRequest. 842 // Sent as a response to FrameMsg_FlushVisualStateRequest.
843 // The message is delivered using RenderWidget::QueueMessage. 843 // The message is delivered using RenderWidget::QueueMessage.
844 IPC_MESSAGE_ROUTED1(FrameHostMsg_FlushVisualStateResponse, uint64 /* id */) 844 IPC_MESSAGE_ROUTED1(FrameHostMsg_FlushVisualStateResponse, uint64 /* id */)
845 845
846 // Puts the browser into "tab fullscreen" mode for the sending renderer. 846 // Puts the browser into "tab fullscreen" mode for the sending renderer.
847 // See the comment in chrome/browser/ui/browser.h for more details. 847 // See the comment in chrome/browser/ui/browser.h for more details.
848 IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, bool /* enter_fullscreen */) 848 IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, bool /* enter_fullscreen */)
849 849
850 // Messages to signal the presence or absence of BeforeUnload or Unload handlers
851 // for a frame. |present| is true if there is at least one of the handlers for
852 // the frame.
853 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeforeUnloadHandlersPresent,
854 bool /* present */)
855 IPC_MESSAGE_ROUTED1(FrameHostMsg_UnloadHandlersPresent,
856 bool /* present */)
857
850 #if defined(OS_MACOSX) || defined(OS_ANDROID) 858 #if defined(OS_MACOSX) || defined(OS_ANDROID)
851 859
852 // Message to show/hide a popup menu using native controls. 860 // Message to show/hide a popup menu using native controls.
853 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 861 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
854 FrameHostMsg_ShowPopup_Params) 862 FrameHostMsg_ShowPopup_Params)
855 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 863 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
856 864
857 #endif 865 #endif
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl_unittest.cc ('k') | content/public/browser/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698