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

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

Issue 2393003002: reflow comments in modules/accessiblity (Closed)
Patch Set: Created 4 years, 2 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 void alterSliderValue(bool increase); 69 void alterSliderValue(bool increase);
70 AXObject* activeDescendant() override; 70 AXObject* activeDescendant() override;
71 String ariaAccessibilityDescription() const; 71 String ariaAccessibilityDescription() const;
72 String ariaAutoComplete() const; 72 String ariaAutoComplete() const;
73 AccessibilityRole determineAriaRoleAttribute() const; 73 AccessibilityRole determineAriaRoleAttribute() const;
74 void accessibilityChildrenFromAttribute(QualifiedName attr, 74 void accessibilityChildrenFromAttribute(QualifiedName attr,
75 AXObject::AXObjectVector&) const; 75 AXObject::AXObjectVector&) const;
76 76
77 bool hasContentEditableAttributeSet() const; 77 bool hasContentEditableAttributeSet() const;
78 bool isTextControl() const override; 78 bool isTextControl() const override;
79 // This returns true if it's focusable but it's not content editable and it's not a control or ARIA control. 79 // This returns true if it's focusable but it's not content editable and it's
80 // not a control or ARIA control.
80 bool isGenericFocusableElement() const; 81 bool isGenericFocusableElement() const;
81 AXObject* menuButtonForMenu() const; 82 AXObject* menuButtonForMenu() const;
82 Element* menuItemElementForMenu() const; 83 Element* menuItemElementForMenu() const;
83 Element* mouseButtonListener() const; 84 Element* mouseButtonListener() const;
84 AccessibilityRole remapAriaRoleDueToParent(AccessibilityRole) const; 85 AccessibilityRole remapAriaRoleDueToParent(AccessibilityRole) const;
85 bool isNativeCheckboxOrRadio() const; 86 bool isNativeCheckboxOrRadio() const;
86 void setNode(Node*); 87 void setNode(Node*);
87 AXObject* correspondingControlForLabelElement() const; 88 AXObject* correspondingControlForLabelElement() const;
88 HTMLLabelElement* labelElementContainer() const; 89 HTMLLabelElement* labelElementContainer() const;
89 90
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 AXRelatedObjectVector*, 234 AXRelatedObjectVector*,
234 NameSources*, 235 NameSources*,
235 bool* foundTextAlternative) const; 236 bool* foundTextAlternative) const;
236 float stepValueForRange() const; 237 float stepValueForRange() const;
237 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const; 238 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const;
238 }; 239 };
239 240
240 } // namespace blink 241 } // namespace blink
241 242
242 #endif // AXNodeObject_h 243 #endif // AXNodeObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698