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

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

Issue 2781383002: Followup comments from r460581. (Closed)
Patch Set: Created 3 years, 8 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after
1602 int /* active_match_ordinal */, 1602 int /* active_match_ordinal */,
1603 bool /* final_update */) 1603 bool /* final_update */)
1604 1604
1605 // Sends hittesting data needed to perform hittesting on the browser process. 1605 // Sends hittesting data needed to perform hittesting on the browser process.
1606 IPC_MESSAGE_ROUTED1(FrameHostMsg_HittestData, FrameHostMsg_HittestData_Params) 1606 IPC_MESSAGE_ROUTED1(FrameHostMsg_HittestData, FrameHostMsg_HittestData_Params)
1607 1607
1608 // Asks the browser to display the file chooser. The result is returned in a 1608 // Asks the browser to display the file chooser. The result is returned in a
1609 // FrameMsg_RunFileChooserResponse message. 1609 // FrameMsg_RunFileChooserResponse message.
1610 IPC_MESSAGE_ROUTED1(FrameHostMsg_RunFileChooser, content::FileChooserParams) 1610 IPC_MESSAGE_ROUTED1(FrameHostMsg_RunFileChooser, content::FileChooserParams)
1611 1611
1612 // Messages to signal the presence or absence of BeforeUnload or Unload handlers 1612 // Messages to signal the presence or absence of beforeunload or unload handlers
1613 // for a frame. |present| is true if there is at least one of the handlers for 1613 // for a frame. |present| is true if there is at least one of the handlers for
1614 // the frame. 1614 // the frame.
1615 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeforeUnloadHandlersPresent, 1615 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeforeUnloadHandlersPresent,
1616 bool /* present */) 1616 bool /* present */)
1617 IPC_MESSAGE_ROUTED1(FrameHostMsg_UnloadHandlersPresent, bool /* present */) 1617 IPC_MESSAGE_ROUTED1(FrameHostMsg_UnloadHandlersPresent, bool /* present */)
1618 1618
1619 #if BUILDFLAG(USE_EXTERNAL_POPUP_MENU) 1619 #if BUILDFLAG(USE_EXTERNAL_POPUP_MENU)
1620 1620
1621 // Message to show/hide a popup menu using native controls. 1621 // Message to show/hide a popup menu using native controls.
1622 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1622 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
(...skipping 29 matching lines...) Expand all
1652 int /* nfr_request_id */, 1652 int /* nfr_request_id */,
1653 float /* distance */) 1653 float /* distance */)
1654 1654
1655 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) 1655 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1656 #endif 1656 #endif
1657 1657
1658 // Adding a new message? Stick to the sort order above: first platform 1658 // Adding a new message? Stick to the sort order above: first platform
1659 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1659 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1660 // platform independent FrameHostMsg, then ifdefs for platform specific 1660 // platform independent FrameHostMsg, then ifdefs for platform specific
1661 // FrameHostMsg. 1661 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698