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

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

Issue 1705853002: NOT FOR REVIEW. ax tree focus with debugging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed crash 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData) 43 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeData)
44 IPC_STRUCT_TRAITS_MEMBER(tree_id) 44 IPC_STRUCT_TRAITS_MEMBER(tree_id)
45 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) 45 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id)
46 IPC_STRUCT_TRAITS_MEMBER(url) 46 IPC_STRUCT_TRAITS_MEMBER(url)
47 IPC_STRUCT_TRAITS_MEMBER(title) 47 IPC_STRUCT_TRAITS_MEMBER(title)
48 IPC_STRUCT_TRAITS_MEMBER(mimetype) 48 IPC_STRUCT_TRAITS_MEMBER(mimetype)
49 IPC_STRUCT_TRAITS_MEMBER(doctype) 49 IPC_STRUCT_TRAITS_MEMBER(doctype)
50 IPC_STRUCT_TRAITS_MEMBER(loaded) 50 IPC_STRUCT_TRAITS_MEMBER(loaded)
51 IPC_STRUCT_TRAITS_MEMBER(loading_progress) 51 IPC_STRUCT_TRAITS_MEMBER(loading_progress)
52 IPC_STRUCT_TRAITS_MEMBER(focus_id)
52 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id) 53 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_object_id)
53 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset) 54 IPC_STRUCT_TRAITS_MEMBER(sel_anchor_offset)
54 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id) 55 IPC_STRUCT_TRAITS_MEMBER(sel_focus_object_id)
55 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset) 56 IPC_STRUCT_TRAITS_MEMBER(sel_focus_offset)
56 IPC_STRUCT_TRAITS_MEMBER(routing_id) 57 IPC_STRUCT_TRAITS_MEMBER(routing_id)
57 IPC_STRUCT_TRAITS_MEMBER(parent_routing_id) 58 IPC_STRUCT_TRAITS_MEMBER(parent_routing_id)
58 IPC_STRUCT_TRAITS_END() 59 IPC_STRUCT_TRAITS_END()
59 60
60 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeUpdate) 61 IPC_STRUCT_TRAITS_BEGIN(content::AXContentTreeUpdate)
61 IPC_STRUCT_TRAITS_MEMBER(has_tree_data) 62 IPC_STRUCT_TRAITS_MEMBER(has_tree_data)
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 IPC_MESSAGE_ROUTED1( 215 IPC_MESSAGE_ROUTED1(
215 AccessibilityHostMsg_FindInPageResult, 216 AccessibilityHostMsg_FindInPageResult,
216 AccessibilityHostMsg_FindInPageResultParams) 217 AccessibilityHostMsg_FindInPageResultParams)
217 218
218 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was 219 // Sent in response to AccessibilityMsg_SnapshotTree. The callback id that was
219 // passed to the request will be returned in |callback_id|, along with 220 // passed to the request will be returned in |callback_id|, along with
220 // a standalone snapshot of the accessibility tree. 221 // a standalone snapshot of the accessibility tree.
221 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse, 222 IPC_MESSAGE_ROUTED2(AccessibilityHostMsg_SnapshotResponse,
222 int /* callback_id */, 223 int /* callback_id */,
223 content::AXContentTreeUpdate) 224 content::AXContentTreeUpdate)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698