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

Side by Side Diff: ui/accessibility/ax_enums.idl

Issue 2918483002: Add an accessibility description for notification (Closed)
Patch Set: Fixed build failure Created 3 years, 6 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 // TODO(nektar): Migrate entire file to Mojoq. 5 // TODO(nektar): Migrate entire file to Mojoq.
6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
7 // until the Chromium and Blink trees are merged. 7 // until the Chromium and Blink trees are merged.
8 [camel_case_enum_to_string=true] namespace ui { 8 [camel_case_enum_to_string=true] namespace ui {
9 9
10 // For new entries to the following four enums, also add to 10 // For new entries to the following four enums, also add to
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 menu_bar, 152 menu_bar,
153 menu_button, 153 menu_button,
154 menu_item, 154 menu_item,
155 menu_item_check_box, 155 menu_item_check_box,
156 menu_item_radio, 156 menu_item_radio,
157 menu_list_option, 157 menu_list_option,
158 menu_list_popup, 158 menu_list_popup,
159 meter, 159 meter,
160 navigation, 160 navigation,
161 note, 161 note,
162 notification,
162 outline, 163 outline,
163 pane, 164 pane,
164 paragraph, 165 paragraph,
165 pop_up_button, 166 pop_up_button,
166 pre, 167 pre,
167 presentational, 168 presentational,
168 progress_indicator, 169 progress_indicator,
169 radio_button, 170 radio_button,
170 radio_group, 171 radio_group,
171 region, 172 region,
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 // First node is before the second one. 663 // First node is before the second one.
663 before, 664 before,
664 665
665 // Nodes are the same. 666 // Nodes are the same.
666 equal, 667 equal,
667 668
668 // First node is after the second one. 669 // First node is after the second one.
669 after 670 after
670 }; 671 };
671 }; 672 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698