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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h

Issue 2694903010: AX checked state changes (Closed)
Patch Set: Test checkbox attribute in automation API, fix whitespace, remove change to third party code Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
index 0a2b8dd0c77dd6310e42ea9a3a60e0c31f1f41e5..7f643ba38b1a5d0f3fdbe7879f7584f97ce3a10b 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
@@ -125,7 +125,6 @@ class MODULES_EXPORT AXNodeObject : public AXObject {
bool isNativeSlider() const override;
// Check object state.
- bool isChecked() const final;
bool isClickable() const final;
bool isEnabled() const override;
AccessibilityExpanded isExpanded() const override;
@@ -150,7 +149,6 @@ class MODULES_EXPORT AXNodeObject : public AXObject {
String text() const override;
// Properties of interactive elements.
- AccessibilityButtonState checkboxOrRadioValue() const final;
AriaCurrentState ariaCurrentState() const final;
InvalidState getInvalidState() const final;
// Only used when invalidState() returns InvalidStateOther.
@@ -228,7 +226,6 @@ class MODULES_EXPORT AXNodeObject : public AXObject {
private:
Member<Node> m_node;
- bool isNativeCheckboxInMixedState() const;
String textFromDescendants(AXObjectSet& visited,
bool recursive) const override;
String nativeTextAlternative(AXObjectSet& visited,

Powered by Google App Engine
This is Rietveld 408576698