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

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

Issue 2833843005: Handling of different types of empty alt (Closed)
Patch Set: One more try to do Linux the right way Created 3 years, 7 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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 enum AXSortDirection { 600 enum AXSortDirection {
601 unsorted, 601 unsorted,
602 ascending, 602 ascending,
603 descending, 603 descending,
604 other 604 other
605 }; 605 };
606 606
607 enum AXNameFrom { 607 enum AXNameFrom {
608 uninitialized, 608 uninitialized,
609 attribute, 609 attribute,
610 explicitly_empty_attribute,
dmazzoni 2017/05/01 17:49:23 sort these
aleventhal 2017/05/17 17:45:47 Changed to attribute_explicitly_empty and kept ord
610 contents, 611 contents,
611 placeholder, 612 placeholder,
612 related_element, 613 related_element,
613 value 614 value
614 }; 615 };
615 616
616 enum AXDescriptionFrom { 617 enum AXDescriptionFrom {
617 uninitialized, 618 uninitialized,
618 attribute, 619 attribute,
619 contents, 620 contents,
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 // First node is before the second one. 662 // First node is before the second one.
662 before, 663 before,
663 664
664 // Nodes are the same. 665 // Nodes are the same.
665 equal, 666 equal,
666 667
667 // First node is after the second one. 668 // First node is after the second one.
668 after 669 after
669 }; 670 };
670 }; 671 };
OLDNEW
« third_party/WebKit/public/web/WebAXEnums.h ('K') | « third_party/WebKit/public/web/WebAXEnums.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698