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: chrome/common/extensions/chrome_extension_messages.h

Issue 2956053005: Keep track of fixed positioning in accessibility tree.
Patch Set: 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Chrome-specific IPC messages for extensions. 5 // Chrome-specific IPC messages for extensions.
6 // Extension-related messages that aren't specific to Chrome live in 6 // Extension-related messages that aren't specific to Chrome live in
7 // extensions/common/extension_messages.h. 7 // extensions/common/extension_messages.h.
8 // 8 //
9 // Multiply-included message file, hence no include guard. 9 // Multiply-included message file, hence no include guard.
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 IPC_STRUCT_TRAITS_MEMBER(location) 46 IPC_STRUCT_TRAITS_MEMBER(location)
47 IPC_STRUCT_TRAITS_MEMBER(transform) 47 IPC_STRUCT_TRAITS_MEMBER(transform)
48 IPC_STRUCT_TRAITS_MEMBER(string_attributes) 48 IPC_STRUCT_TRAITS_MEMBER(string_attributes)
49 IPC_STRUCT_TRAITS_MEMBER(int_attributes) 49 IPC_STRUCT_TRAITS_MEMBER(int_attributes)
50 IPC_STRUCT_TRAITS_MEMBER(float_attributes) 50 IPC_STRUCT_TRAITS_MEMBER(float_attributes)
51 IPC_STRUCT_TRAITS_MEMBER(bool_attributes) 51 IPC_STRUCT_TRAITS_MEMBER(bool_attributes)
52 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes) 52 IPC_STRUCT_TRAITS_MEMBER(intlist_attributes)
53 IPC_STRUCT_TRAITS_MEMBER(html_attributes) 53 IPC_STRUCT_TRAITS_MEMBER(html_attributes)
54 IPC_STRUCT_TRAITS_MEMBER(child_ids) 54 IPC_STRUCT_TRAITS_MEMBER(child_ids)
55 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) 55 IPC_STRUCT_TRAITS_MEMBER(offset_container_id)
56 IPC_STRUCT_TRAITS_MEMBER(is_fixed_positioned)
56 IPC_STRUCT_TRAITS_END() 57 IPC_STRUCT_TRAITS_END()
57 58
58 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData) 59 IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeData)
59 IPC_STRUCT_TRAITS_MEMBER(tree_id) 60 IPC_STRUCT_TRAITS_MEMBER(tree_id)
60 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id) 61 IPC_STRUCT_TRAITS_MEMBER(parent_tree_id)
61 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id) 62 IPC_STRUCT_TRAITS_MEMBER(focused_tree_id)
62 IPC_STRUCT_TRAITS_MEMBER(url) 63 IPC_STRUCT_TRAITS_MEMBER(url)
63 IPC_STRUCT_TRAITS_MEMBER(title) 64 IPC_STRUCT_TRAITS_MEMBER(title)
64 IPC_STRUCT_TRAITS_MEMBER(mimetype) 65 IPC_STRUCT_TRAITS_MEMBER(mimetype)
65 IPC_STRUCT_TRAITS_MEMBER(doctype) 66 IPC_STRUCT_TRAITS_MEMBER(doctype)
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 // extension is using the automation API to listen for accessibility events. 118 // extension is using the automation API to listen for accessibility events.
118 IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent, 119 IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent,
119 ExtensionMsg_AccessibilityEventParams, 120 ExtensionMsg_AccessibilityEventParams,
120 bool /* is_active_profile */) 121 bool /* is_active_profile */)
121 122
122 // Forward an accessibility location change message to an extension process 123 // Forward an accessibility location change message to an extension process
123 // where an extension is using the automation API to listen for 124 // where an extension is using the automation API to listen for
124 // accessibility events. 125 // accessibility events.
125 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityLocationChange, 126 IPC_MESSAGE_ROUTED1(ExtensionMsg_AccessibilityLocationChange,
126 ExtensionMsg_AccessibilityLocationChangeParams) 127 ExtensionMsg_AccessibilityLocationChangeParams)
127
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698