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/accessibility_messages.h

Issue 1847733005: Fix an IPC fuzzer compile failure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 accessibility. 5 // IPC messages for accessibility.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "content/common/ax_content_node_data.h" 8 #include "content/common/ax_content_node_data.h"
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "content/common/view_message_enums.h" 10 #include "content/common/view_message_enums.h"
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 std::vector<AccessibilityHostMsg_LocationChangeParams>) 219 std::vector<AccessibilityHostMsg_LocationChangeParams>)
220 220
221 // Sent to update the browser of Find In Page results. 221 // Sent to update the browser of Find In Page results.
222 IPC_MESSAGE_ROUTED1( 222 IPC_MESSAGE_ROUTED1(
223 AccessibilityHostMsg_FindInPageResult, 223 AccessibilityHostMsg_FindInPageResult,
224 AccessibilityHostMsg_FindInPageResultParams) 224 AccessibilityHostMsg_FindInPageResultParams)
225 225
226 // Sent in response to AccessibilityMsg_HitTest. 226 // Sent in response to AccessibilityMsg_HitTest.
227 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_ChildFrameHitTestResult, 227 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_ChildFrameHitTestResult,
228 gfx::Point /* location tested */, 228 gfx::Point /* location tested */,
229 int /* node id of result */); 229 int /* node id of result */)
230 230
231 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was 231 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was
232 // passed to the request will be returned in |callback_id|, along with 232 // passed to the request will be returned in |callback_id|, along with
233 // a standalone snapshot of the accessibility tree. 233 // a standalone snapshot of the accessibility tree.
234 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, 234 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse,
235 int /* callback_id */, 235 int /* callback_id */,
236 content::AXContentTreeUpdate) 236 content::AXContentTreeUpdate)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698