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

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

Issue 2967193003: Relation list properties for Accessibility Object Model phase 1 (Closed)
Patch Set: Get rid of accidental duplication in inspector output Created 3 years, 5 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 /* 1 /*
2 * Copyright (C) 2012, Google Inc. All rights reserved. 2 * Copyright (C) 2012, Google 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 const AXObject* InheritsPresentationalRoleFrom() const override; 63 const AXObject* InheritsPresentationalRoleFrom() const override;
64 virtual AccessibilityRole DetermineAccessibilityRole(); 64 virtual AccessibilityRole DetermineAccessibilityRole();
65 virtual AccessibilityRole NativeAccessibilityRoleIgnoringAria() const; 65 virtual AccessibilityRole NativeAccessibilityRoleIgnoringAria() const;
66 String AccessibilityDescriptionForElements( 66 String AccessibilityDescriptionForElements(
67 HeapVector<Member<Element>>& elements) const; 67 HeapVector<Member<Element>>& elements) const;
68 void AlterSliderValue(bool increase); 68 void AlterSliderValue(bool increase);
69 AXObject* ActiveDescendant() override; 69 AXObject* ActiveDescendant() override;
70 String AriaAccessibilityDescription() const; 70 String AriaAccessibilityDescription() const;
71 String AriaAutoComplete() const; 71 String AriaAutoComplete() const;
72 AccessibilityRole DetermineAriaRoleAttribute() const; 72 AccessibilityRole DetermineAriaRoleAttribute() const;
73 void AccessibilityChildrenFromAttribute(QualifiedName attr, 73 void AccessibilityChildrenFromAOMProperty(AOMRelationListProperty,
74 AXObject::AXObjectVector&) const; 74 AXObject::AXObjectVector&) const;
75 75
76 bool HasContentEditableAttributeSet() const; 76 bool HasContentEditableAttributeSet() const;
77 bool IsTextControl() const override; 77 bool IsTextControl() const override;
78 // This returns true if it's focusable but it's not content editable and it's 78 // This returns true if it's focusable but it's not content editable and it's
79 // not a control or ARIA control. 79 // not a control or ARIA control.
80 bool IsGenericFocusableElement() const; 80 bool IsGenericFocusableElement() const;
81 AXObject* MenuButtonForMenu() const; 81 AXObject* MenuButtonForMenu() const;
82 Element* MenuItemElementForMenu() const; 82 Element* MenuItemElementForMenu() const;
83 Element* MouseButtonListener() const; 83 Element* MouseButtonListener() const;
84 AccessibilityRole RemapAriaRoleDueToParent(AccessibilityRole) const; 84 AccessibilityRole RemapAriaRoleDueToParent(AccessibilityRole) const;
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 NameSources*, 239 NameSources*,
240 bool* found_text_alternative) const; 240 bool* found_text_alternative) const;
241 float StepValueForRange() const; 241 float StepValueForRange() const;
242 bool IsDescendantOfElementType(HashSet<QualifiedName>& tag_names) const; 242 bool IsDescendantOfElementType(HashSet<QualifiedName>& tag_names) const;
243 String PlaceholderFromNativeAttribute() const; 243 String PlaceholderFromNativeAttribute() const;
244 }; 244 };
245 245
246 } // namespace blink 246 } // namespace blink
247 247
248 #endif // AXNodeObject_h 248 #endif // AXNodeObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698