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

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

Issue 2799413002: Views a11y: Add AXNodeData.actions bitfield to indicate supported actions by UI. (Closed)
Patch Set: Fix tests broken from rebase. Created 3 years, 7 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 (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 28 matching lines...) Expand all
39 IPC_STRUCT_TRAITS_MEMBER(target_rect) 39 IPC_STRUCT_TRAITS_MEMBER(target_rect)
40 IPC_STRUCT_TRAITS_MEMBER(target_point) 40 IPC_STRUCT_TRAITS_MEMBER(target_point)
41 IPC_STRUCT_TRAITS_MEMBER(value) 41 IPC_STRUCT_TRAITS_MEMBER(value)
42 IPC_STRUCT_TRAITS_MEMBER(hit_test_event_to_fire) 42 IPC_STRUCT_TRAITS_MEMBER(hit_test_event_to_fire)
43 IPC_STRUCT_TRAITS_END() 43 IPC_STRUCT_TRAITS_END()
44 44
45 IPC_STRUCT_TRAITS_BEGIN(content::AXContentNodeData) 45 IPC_STRUCT_TRAITS_BEGIN(content::AXContentNodeData)
46 IPC_STRUCT_TRAITS_MEMBER(id) 46 IPC_STRUCT_TRAITS_MEMBER(id)
47 IPC_STRUCT_TRAITS_MEMBER(role) 47 IPC_STRUCT_TRAITS_MEMBER(role)
48 IPC_STRUCT_TRAITS_MEMBER(state) 48 IPC_STRUCT_TRAITS_MEMBER(state)
49 IPC_STRUCT_TRAITS_MEMBER(actions)
49 IPC_STRUCT_TRAITS_MEMBER(location) 50 IPC_STRUCT_TRAITS_MEMBER(location)
50 IPC_STRUCT_TRAITS_MEMBER(transform) 51 IPC_STRUCT_TRAITS_MEMBER(transform)
51 IPC_STRUCT_TRAITS_MEMBER(string_attributes) 52 IPC_STRUCT_TRAITS_MEMBER(string_attributes)
52 IPC_STRUCT_TRAITS_MEMBER(int_attributes) 53 IPC_STRUCT_TRAITS_MEMBER(int_attributes)
53 IPC_STRUCT_TRAITS_MEMBER(float_attributes) 54 IPC_STRUCT_TRAITS_MEMBER(float_attributes)
54 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) 55 IPC_STRUCT_TRAITS_MEMBER(bool_attributes)
55 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) 56 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes)
56 IPC_STRUCT_TRAITS_MEMBER(html_attributes) 57 IPC_STRUCT_TRAITS_MEMBER(html_attributes)
57 IPC_STRUCT_TRAITS_MEMBER(child_ids) 58 IPC_STRUCT_TRAITS_MEMBER(child_ids)
58 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes) 59 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes)
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 gfx::Point /* location tested */, 212 gfx::Point /* location tested */,
212 int /* node id of result */, 213 int /* node id of result */,
213 ui::AXEvent /* event to fire */) 214 ui::AXEvent /* event to fire */)
214 215
215 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was 216 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was
216 // passed to the request will be returned in |callback_id|, along with 217 // passed to the request will be returned in |callback_id|, along with
217 // a standalone snapshot of the accessibility tree. 218 // a standalone snapshot of the accessibility tree.
218 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, 219 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse,
219 int /* callback_id */, 220 int /* callback_id */,
220 content::AXContentTreeUpdate) 221 content::AXContentTreeUpdate)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698