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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXObject.h

Issue 2530343002: (CANCELED) Delay determineAccessibleRole() from AXNodeObject::init() to roleValue() (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nuanti Ltd. 3 * Copyright (C) 2008 Nuanti Ltd.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 TimerRole, 172 TimerRole,
173 ToggleButtonRole, 173 ToggleButtonRole,
174 ToolbarRole, 174 ToolbarRole,
175 TreeGridRole, 175 TreeGridRole,
176 TreeItemRole, 176 TreeItemRole,
177 TreeRole, 177 TreeRole,
178 UserInterfaceTooltipRole, 178 UserInterfaceTooltipRole,
179 VideoRole, // No mapping to ARIA role. 179 VideoRole, // No mapping to ARIA role.
180 WebAreaRole, // No mapping to ARIA role. 180 WebAreaRole, // No mapping to ARIA role.
181 WindowRole, // No mapping to ARIA role. 181 WindowRole, // No mapping to ARIA role.
182 NumRoles 182 NumRoles,
183 NeedsToDetermineRole = NumRoles
183 }; 184 };
184 185
185 enum AccessibilityTextSource { 186 enum AccessibilityTextSource {
186 AlternativeText, 187 AlternativeText,
187 ChildrenText, 188 ChildrenText,
188 SummaryText, 189 SummaryText,
189 HelpText, 190 HelpText,
190 VisibleText, 191 VisibleText,
191 TitleTagText, 192 TitleTagText,
192 PlaceholderText, 193 PlaceholderText,
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 static unsigned s_numberOfLiveAXObjects; 1069 static unsigned s_numberOfLiveAXObjects;
1069 }; 1070 };
1070 1071
1071 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ 1072 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
1072 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, \ 1073 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, \
1073 object.predicate) 1074 object.predicate)
1074 1075
1075 } // namespace blink 1076 } // namespace blink
1076 1077
1077 #endif // AXObject_h 1078 #endif // AXObject_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698