OLD | NEW |
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 | 135 |
136 const InternalRoleEntry internalRoles[] = { | 136 const InternalRoleEntry internalRoles[] = { |
137 { UnknownRole, "Unknown" }, | 137 { UnknownRole, "Unknown" }, |
138 { AlertDialogRole, "AlertDialog" }, | 138 { AlertDialogRole, "AlertDialog" }, |
139 { AlertRole, "Alert" }, | 139 { AlertRole, "Alert" }, |
140 { AnnotationRole, "Annotation" }, | 140 { AnnotationRole, "Annotation" }, |
141 { ApplicationRole, "Application" }, | 141 { ApplicationRole, "Application" }, |
142 { ArticleRole, "Article" }, | 142 { ArticleRole, "Article" }, |
143 { BannerRole, "Banner" }, | 143 { BannerRole, "Banner" }, |
144 { BlockquoteRole, "Blockquote" }, | 144 { BlockquoteRole, "Blockquote" }, |
| 145 // TODO(nektar): Delete busy_indicator role. It's used nowhere. |
145 { BusyIndicatorRole, "BusyIndicator" }, | 146 { BusyIndicatorRole, "BusyIndicator" }, |
146 { ButtonRole, "Button" }, | 147 { ButtonRole, "Button" }, |
147 { CanvasRole, "Canvas" }, | 148 { CanvasRole, "Canvas" }, |
148 { CaptionRole, "Caption" }, | 149 { CaptionRole, "Caption" }, |
149 { CellRole, "Cell" }, | 150 { CellRole, "Cell" }, |
150 { CheckBoxRole, "CheckBox" }, | 151 { CheckBoxRole, "CheckBox" }, |
151 { ColorWellRole, "ColorWell" }, | 152 { ColorWellRole, "ColorWell" }, |
152 { ColumnHeaderRole, "ColumnHeader" }, | 153 { ColumnHeaderRole, "ColumnHeader" }, |
153 { ColumnRole, "Column" }, | 154 { ColumnRole, "Column" }, |
154 { ComboBoxRole, "ComboBox" }, | 155 { ComboBoxRole, "ComboBox" }, |
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1510 | 1511 |
1511 DEFINE_TRACE(AXObject) | 1512 DEFINE_TRACE(AXObject) |
1512 { | 1513 { |
1513 visitor->trace(m_children); | 1514 visitor->trace(m_children); |
1514 visitor->trace(m_parent); | 1515 visitor->trace(m_parent); |
1515 visitor->trace(m_cachedLiveRegionRoot); | 1516 visitor->trace(m_cachedLiveRegionRoot); |
1516 visitor->trace(m_axObjectCache); | 1517 visitor->trace(m_axObjectCache); |
1517 } | 1518 } |
1518 | 1519 |
1519 } // namespace blink | 1520 } // namespace blink |
OLD | NEW |