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

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

Issue 2956053005: Keep track of fixed positioning in accessibility tree.
Patch Set: GetSimpleRelativeBounds, add failing test for fixed with transform Created 3 years, 5 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 IPC_STRUCT_TRAITS_MEMBER(transform) 51 IPC_STRUCT_TRAITS_MEMBER(transform)
52 IPC_STRUCT_TRAITS_MEMBER(string_attributes) 52 IPC_STRUCT_TRAITS_MEMBER(string_attributes)
53 IPC_STRUCT_TRAITS_MEMBER(int_attributes) 53 IPC_STRUCT_TRAITS_MEMBER(int_attributes)
54 IPC_STRUCT_TRAITS_MEMBER(float_attributes) 54 IPC_STRUCT_TRAITS_MEMBER(float_attributes)
55 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) 55 IPC_STRUCT_TRAITS_MEMBER(bool_attributes)
56 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) 56 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes)
57 IPC_STRUCT_TRAITS_MEMBER(html_attributes) 57 IPC_STRUCT_TRAITS_MEMBER(html_attributes)
58 IPC_STRUCT_TRAITS_MEMBER(child_ids) 58 IPC_STRUCT_TRAITS_MEMBER(child_ids)
59 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes) 59 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes)
60 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) 60 IPC_STRUCT_TRAITS_MEMBER(offset_container_id)
61 IPC_STRUCT_TRAITS_MEMBER(is_fixed_positioned)
61 IPC_STRUCT_TRAITS_END() 62 IPC_STRUCT_TRAITS_END()
62 63
63 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData) 64 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData)
64 IPC_STRUCT_TRAITS_MEMBER(tree_id) 65 IPC_STRUCT_TRAITS_MEMBER(tree_id)
65 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) 66 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id)
66 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) 67 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id)
67 IPC_STRUCT_TRAITS_MEMBER(url) 68 IPC_STRUCT_TRAITS_MEMBER(url)
68 IPC_STRUCT_TRAITS_MEMBER(title) 69 IPC_STRUCT_TRAITS_MEMBER(title)
69 IPC_STRUCT_TRAITS_MEMBER(mimetype) 70 IPC_STRUCT_TRAITS_MEMBER(mimetype)
70 IPC_STRUCT_TRAITS_MEMBER(doctype) 71 IPC_STRUCT_TRAITS_MEMBER(doctype)
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 gfx::Point /* location tested */, 213 gfx::Point /* location tested */,
213 int /* node id of result */, 214 int /* node id of result */,
214 ui::AXEvent /* event to fire */) 215 ui::AXEvent /* event to fire */)
215 216
216 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was 217 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was
217 // passed to the request will be returned in |callback_id|, along with 218 // passed to the request will be returned in |callback_id|, along with
218 // a standalone snapshot of the accessibility tree. 219 // a standalone snapshot of the accessibility tree.
219 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, 220 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse,
220 int /* callback_id */, 221 int /* callback_id */,
221 content::AXContentTreeUpdate) 222 content::AXContentTreeUpdate)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698