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

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

Issue 2894103002: Int and Float properties for Accessibility Object Model phase 1 (Closed)
Patch Set: Update webexposed/ 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/accessibility/AXObjectImpl.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.h b/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.h
index c9772b1c435cfd2904534f30377dddbfb4e8108b..cd91e85c912574097ef9be485d0da746e7c51447 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.h
@@ -57,6 +57,9 @@ class ScrollableArea;
enum class AOMBooleanProperty;
enum class AOMStringProperty;
+enum class AOMUIntProperty;
+enum class AOMIntProperty;
+enum class AOMFloatProperty;
typedef unsigned AXID;
@@ -353,6 +356,9 @@ class MODULES_EXPORT AXObjectImpl
bool HasAOMPropertyOrARIAAttribute(AOMBooleanProperty, bool& result) const;
bool AOMPropertyOrARIAAttributeIsTrue(AOMBooleanProperty) const;
bool AOMPropertyOrARIAAttributeIsFalse(AOMBooleanProperty) const;
+ bool HasAOMPropertyOrARIAAttribute(AOMUIntProperty, uint32_t& result) const;
+ bool HasAOMPropertyOrARIAAttribute(AOMIntProperty, int32_t& result) const;
+ bool HasAOMPropertyOrARIAAttribute(AOMFloatProperty, float& result) const;
virtual void GetSparseAXAttributes(AXSparseAttributeClient&) const {}

Powered by Google App Engine
This is Rietveld 408576698