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

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

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another skia dependency Created 4 years, 10 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 12 matching lines...) Expand all
23 #define IPC_MESSAGE_START AccessibilityMsgStart 23 #define IPC_MESSAGE_START AccessibilityMsgStart
24 24
25 IPC_ENUM_TRAITS_MAX_VALUE(content::AXContentIntAttribute, 25 IPC_ENUM_TRAITS_MAX_VALUE(content::AXContentIntAttribute,
26 content::AX_CONTENT_INT_ATTRIBUTE_LAST) 26 content::AX_CONTENT_INT_ATTRIBUTE_LAST)
27 27
28 IPC_STRUCT_TRAITS_BEGIN(content::AXContentNodeData) 28 IPC_STRUCT_TRAITS_BEGIN(content::AXContentNodeData)
29 IPC_STRUCT_TRAITS_MEMBER(id) 29 IPC_STRUCT_TRAITS_MEMBER(id)
30 IPC_STRUCT_TRAITS_MEMBER(role) 30 IPC_STRUCT_TRAITS_MEMBER(role)
31 IPC_STRUCT_TRAITS_MEMBER(state) 31 IPC_STRUCT_TRAITS_MEMBER(state)
32 IPC_STRUCT_TRAITS_MEMBER(location) 32 IPC_STRUCT_TRAITS_MEMBER(location)
33 IPC_STRUCT_TRAITS_MEMBER(transform)
33 IPC_STRUCT_TRAITS_MEMBER(string_attributes) 34 IPC_STRUCT_TRAITS_MEMBER(string_attributes)
34 IPC_STRUCT_TRAITS_MEMBER(int_attributes) 35 IPC_STRUCT_TRAITS_MEMBER(int_attributes)
35 IPC_STRUCT_TRAITS_MEMBER(float_attributes) 36 IPC_STRUCT_TRAITS_MEMBER(float_attributes)
36 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) 37 IPC_STRUCT_TRAITS_MEMBER(bool_attributes)
37 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) 38 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes)
38 IPC_STRUCT_TRAITS_MEMBER(html_attributes) 39 IPC_STRUCT_TRAITS_MEMBER(html_attributes)
39 IPC_STRUCT_TRAITS_MEMBER(child_ids) 40 IPC_STRUCT_TRAITS_MEMBER(child_ids)
40 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes) 41 IPC_STRUCT_TRAITS_MEMBER(content_int_attributes)
41 IPC_STRUCT_TRAITS_END() 42 IPC_STRUCT_TRAITS_END()
42 43
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 IPC_MESSAGE_ROUTED1( 216 IPC_MESSAGE_ROUTED1(
216 AccessibilityHostMsg_FindInPageResult, 217 AccessibilityHostMsg_FindInPageResult,
217 AccessibilityHostMsg_FindInPageResultParams) 218 AccessibilityHostMsg_FindInPageResultParams)
218 219
219 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was 220 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was
220 // passed to the request will be returned in |callback_id|, along with 221 // passed to the request will be returned in |callback_id|, along with
221 // a standalone snapshot of the accessibility tree. 222 // a standalone snapshot of the accessibility tree.
222 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, 223 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse,
223 int /* callback_id */, 224 int /* callback_id */,
224 content::AXContentTreeUpdate) 225 content::AXContentTreeUpdate)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698