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

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

Issue 1416873015: Text controls should expose their value instead of their name via IAccessibleText (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed radio menu items test on Android. Created 5 years, 1 month 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/AXObject.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 // 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 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 5 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
6 // until the Chromium and Blink trees are merged. 6 // until the Chromium and Blink trees are merged.
7 [camel_case_enum_to_string=true] namespace ui { 7 [camel_case_enum_to_string=true] namespace ui {
8 8
9 // For new entries to the following three enums, also add to 9 // For new entries to the following three enums, also add to
10 // chrome/common/extensions/api/automation.idl. 10 // chrome/common/extensions/api/automation.idl.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 }; 64 };
65 65
66 enum AXRole { 66 enum AXRole {
67 alert_dialog, 67 alert_dialog,
68 alert, 68 alert,
69 annotation, 69 annotation,
70 application, 70 application,
71 article, 71 article,
72 banner, 72 banner,
73 blockquote, 73 blockquote,
74 // TODO(nektar): Remove busy_indicator because it's used nowhere.
74 busy_indicator, 75 busy_indicator,
75 button, 76 button,
76 button_drop_down, 77 button_drop_down,
77 canvas, 78 canvas,
78 caption, 79 caption,
79 cell, 80 cell,
80 check_box, 81 check_box,
81 client, 82 client,
82 color_well, 83 color_well,
83 column_header, 84 column_header,
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 }; 423 };
423 424
424 [cpp_enum_prefix_override="ax"] enum AXSortDirection { 425 [cpp_enum_prefix_override="ax"] enum AXSortDirection {
425 sort_direction_unsorted, 426 sort_direction_unsorted,
426 sort_direction_ascending, 427 sort_direction_ascending,
427 sort_direction_descending, 428 sort_direction_descending,
428 sort_direction_other 429 sort_direction_other
429 }; 430 };
430 431
431 }; 432 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698