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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXListBoxOption.h

Issue 1435113003: Make use of new AX name calc in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issue with ariaTextAlternative 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 static AXListBoxOption* create(LayoutObject*, AXObjectCacheImpl&); 47 static AXListBoxOption* create(LayoutObject*, AXObjectCacheImpl&);
48 ~AXListBoxOption() override; 48 ~AXListBoxOption() override;
49 49
50 bool isAXListBoxOption() const override { return true; } 50 bool isAXListBoxOption() const override { return true; }
51 AccessibilityRole determineAccessibilityRole() final; 51 AccessibilityRole determineAccessibilityRole() final;
52 bool isSelected() const override; 52 bool isSelected() const override;
53 bool isEnabled() const override; 53 bool isEnabled() const override;
54 bool isSelectedOptionActive() const override; 54 bool isSelectedOptionActive() const override;
55 void setSelected(bool) override; 55 void setSelected(bool) override;
56 bool canSetSelectedAttribute() const override; 56 bool canSetSelectedAttribute() const override;
57 String stringValue() const override; 57 String textAlternative(bool recursive, bool inAriaLabelledByTraversal, AXObj ectSet& visited, AXNameFrom&, AXRelatedObjectVector*, NameSources*) const overri de;
58 String deprecatedTitle(TextUnderElementMode) const override { return String( ); }
59 58
60 private: 59 private:
61 bool canHaveChildren() const override { return false; } 60 bool canHaveChildren() const override { return false; }
62 bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override ; 61 bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override ;
63 62
64 HTMLSelectElement* listBoxOptionParentNode() const; 63 HTMLSelectElement* listBoxOptionParentNode() const;
65 int listBoxOptionIndex() const; 64 int listBoxOptionIndex() const;
66 AXObject* listBoxOptionAXObject(HTMLElement*) const; 65 AXObject* listBoxOptionAXObject(HTMLElement*) const;
67 bool isParentPresentationalRole() const; 66 bool isParentPresentationalRole() const;
68 }; 67 };
69 68
70 DEFINE_AX_OBJECT_TYPE_CASTS(AXListBoxOption, isAXListBoxOption()); 69 DEFINE_AX_OBJECT_TYPE_CASTS(AXListBoxOption, isAXListBoxOption());
71 70
72 } // namespace blink 71 } // namespace blink
73 72
74 #endif // AXListBoxOption_h 73 #endif // AXListBoxOption_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698