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

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

Issue 2694413006: Scope and clean up uses of AccessibilityMode. (Closed)
Patch Set: use param traits Created 3 years, 9 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 IPC_MESSAGE_ROUTED1(FrameMsg_TextSurroundingSelectionRequest, 775 IPC_MESSAGE_ROUTED1(FrameMsg_TextSurroundingSelectionRequest,
776 uint32_t /* max_length */) 776 uint32_t /* max_length */)
777 777
778 // Extracts the data at the given rect, returning it through the 778 // Extracts the data at the given rect, returning it through the
779 // SmartClipDataExtracted IPC. 779 // SmartClipDataExtracted IPC.
780 IPC_MESSAGE_ROUTED2(FrameMsg_ExtractSmartClipData, 780 IPC_MESSAGE_ROUTED2(FrameMsg_ExtractSmartClipData,
781 uint32_t /* id */, 781 uint32_t /* id */,
782 gfx::Rect /* rect */) 782 gfx::Rect /* rect */)
783 783
784 // Change the accessibility mode in the renderer process. 784 // Change the accessibility mode in the renderer process.
785 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, 785 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, content::AccessibilityMode)
786 AccessibilityMode)
787 786
788 // Dispatch a load event in the iframe element containing this frame. 787 // Dispatch a load event in the iframe element containing this frame.
789 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) 788 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad)
790 789
791 // Notifies the frame that its parent has changed the frame's sandbox flags. 790 // Notifies the frame that its parent has changed the frame's sandbox flags.
792 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) 791 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags)
793 792
794 // Update a proxy's window.name property. Used when the frame's name is 793 // Update a proxy's window.name property. Used when the frame's name is
795 // changed in another process. 794 // changed in another process.
796 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName, 795 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName,
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
1616 // nearest find result in the sending frame. 1615 // nearest find result in the sending frame.
1617 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1616 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1618 int /* nfr_request_id */, 1617 int /* nfr_request_id */,
1619 float /* distance */) 1618 float /* distance */)
1620 #endif 1619 #endif
1621 1620
1622 // Adding a new message? Stick to the sort order above: first platform 1621 // Adding a new message? Stick to the sort order above: first platform
1623 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1622 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1624 // platform independent FrameHostMsg, then ifdefs for platform specific 1623 // platform independent FrameHostMsg, then ifdefs for platform specific
1625 // FrameHostMsg. 1624 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698