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

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

Issue 1046153002: Removing TextArea role. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | Source/modules/accessibility/AXObject.cpp » ('j') | 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 SplitterRole, 152 SplitterRole,
153 StaticTextRole, // No mapping to ARIA role 153 StaticTextRole, // No mapping to ARIA role
154 StatusRole, 154 StatusRole,
155 SwitchRole, 155 SwitchRole,
156 TabGroupRole, // No mapping to ARIA role 156 TabGroupRole, // No mapping to ARIA role
157 TabListRole, 157 TabListRole,
158 TabPanelRole, 158 TabPanelRole,
159 TabRole, 159 TabRole,
160 TableHeaderContainerRole, // No mapping to ARIA role 160 TableHeaderContainerRole, // No mapping to ARIA role
161 TableRole, 161 TableRole,
162 TextAreaRole,
163 TextFieldRole, 162 TextFieldRole,
164 TimeRole, // No mapping to ARIA role 163 TimeRole, // No mapping to ARIA role
165 TimerRole, 164 TimerRole,
166 ToggleButtonRole, 165 ToggleButtonRole,
167 ToolbarRole, 166 ToolbarRole,
168 TreeGridRole, 167 TreeGridRole,
169 TreeItemRole, 168 TreeItemRole,
170 TreeRole, 169 TreeRole,
171 UserInterfaceTooltipRole, 170 UserInterfaceTooltipRole,
172 WebAreaRole, // No mapping to ARIA role 171 WebAreaRole, // No mapping to ARIA role
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 static bool includesARIAWidgetRole(const String&); 671 static bool includesARIAWidgetRole(const String&);
673 static bool hasInteractiveARIAAttribute(const Element&); 672 static bool hasInteractiveARIAAttribute(const Element&);
674 }; 673 };
675 674
676 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ 675 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
677 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate) 676 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate)
678 677
679 } // namespace blink 678 } // namespace blink
680 679
681 #endif // AXObject_h 680 #endif // AXObject_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/accessibility/AXObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698