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

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

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 | « Source/modules/accessibility/AXObject.h ('k') | Source/web/AssertMatchingEnums.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 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 { SplitterRole, "Splitter" }, 229 { SplitterRole, "Splitter" },
230 { StaticTextRole, "StaticText" }, 230 { StaticTextRole, "StaticText" },
231 { StatusRole, "Status" }, 231 { StatusRole, "Status" },
232 { SwitchRole, "Switch" }, 232 { SwitchRole, "Switch" },
233 { TabGroupRole, "TabGroup" }, 233 { TabGroupRole, "TabGroup" },
234 { TabListRole, "TabList" }, 234 { TabListRole, "TabList" },
235 { TabPanelRole, "TabPanel" }, 235 { TabPanelRole, "TabPanel" },
236 { TabRole, "Tab" }, 236 { TabRole, "Tab" },
237 { TableHeaderContainerRole, "TableHeaderContainer" }, 237 { TableHeaderContainerRole, "TableHeaderContainer" },
238 { TableRole, "Table" }, 238 { TableRole, "Table" },
239 { TextAreaRole, "TextArea" },
240 { TextFieldRole, "TextField" }, 239 { TextFieldRole, "TextField" },
241 { TimeRole, "Time" }, 240 { TimeRole, "Time" },
242 { TimerRole, "Timer" }, 241 { TimerRole, "Timer" },
243 { ToggleButtonRole, "ToggleButton" }, 242 { ToggleButtonRole, "ToggleButton" },
244 { ToolbarRole, "Toolbar" }, 243 { ToolbarRole, "Toolbar" },
245 { TreeGridRole, "TreeGrid" }, 244 { TreeGridRole, "TreeGrid" },
246 { TreeItemRole, "TreeItem" }, 245 { TreeItemRole, "TreeItem" },
247 { TreeRole, "Tree" }, 246 { TreeRole, "Tree" },
248 { UserInterfaceTooltipRole, "UserInterfaceTooltip" }, 247 { UserInterfaceTooltipRole, "UserInterfaceTooltip" },
249 { WebAreaRole, "WebArea" }, 248 { WebAreaRole, "WebArea" },
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after
1300 } 1299 }
1301 1300
1302 const AtomicString& AXObject::internalRoleName(AccessibilityRole role) 1301 const AtomicString& AXObject::internalRoleName(AccessibilityRole role)
1303 { 1302 {
1304 static const Vector<AtomicString>* internalRoleNameVector = createInternalRo leNameVector(); 1303 static const Vector<AtomicString>* internalRoleNameVector = createInternalRo leNameVector();
1305 1304
1306 return internalRoleNameVector->at(role); 1305 return internalRoleNameVector->at(role);
1307 } 1306 }
1308 1307
1309 } // namespace blink 1308 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/accessibility/AXObject.h ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698