| Index: third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.h b/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| index f62c261681f8f243bec8719325916ca554714859..ba79e1eb85a8c64ee3511a0a174110eb08e6b51a 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| @@ -1,4 +1,3 @@
|
| -
|
| /*
|
| * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved.
|
| * Copyright (C) 2008 Nuanti Ltd.
|
| @@ -60,6 +59,7 @@ enum class AOMStringProperty;
|
| enum class AOMUIntProperty;
|
| enum class AOMIntProperty;
|
| enum class AOMFloatProperty;
|
| +enum class AOMRelationProperty;
|
|
|
| typedef unsigned AXID;
|
|
|
| @@ -353,6 +353,7 @@ class MODULES_EXPORT AXObject : public GarbageCollectedFinalized<AXObject> {
|
| // Wrappers that retrieve either an Accessibility Object Model property,
|
| // or the equivalent ARIA attribute, in that order.
|
| const AtomicString& GetAOMPropertyOrARIAAttribute(AOMStringProperty) const;
|
| + Element* GetAOMPropertyOrARIAAttribute(AOMRelationProperty) const;
|
| bool HasAOMPropertyOrARIAAttribute(AOMBooleanProperty, bool& result) const;
|
| bool AOMPropertyOrARIAAttributeIsTrue(AOMBooleanProperty) const;
|
| bool AOMPropertyOrARIAAttributeIsFalse(AOMBooleanProperty) const;
|
|
|