| Index: third_party/WebKit/Source/core/dom/AccessibleNode.h
|
| diff --git a/third_party/WebKit/Source/core/dom/AccessibleNode.h b/third_party/WebKit/Source/core/dom/AccessibleNode.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..794c09da8281b17a70f5532ec801328e3109a20d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/dom/AccessibleNode.h
|
| @@ -0,0 +1,70 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef AccessibleNode_h
|
| +#define AccessibleNode_h
|
| +
|
| +#include "bindings/core/v8/ScriptWrappable.h"
|
| +#include "core/CoreExport.h"
|
| +#include "wtf/HashMap.h"
|
| +#include "wtf/text/AtomicString.h"
|
| +#include "wtf/text/AtomicStringHash.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class Element;
|
| +
|
| +enum class AOMStringProperty {
|
| + None,
|
| + Role,
|
| + Label,
|
| +};
|
| +
|
| +struct AOMStringPropertyHashTraits : WTF::GenericHashTraits<AOMStringProperty> {
|
| + static const bool emptyValueIsZero = false;
|
| + static AOMStringProperty emptyValue() { return AOMStringProperty::None; };
|
| + static void constructDeletedValue(AOMStringProperty& slot, bool) {
|
| + slot = AOMStringProperty::None;
|
| + }
|
| + static bool isDeletedValue(AOMStringProperty value) {
|
| + return value == AOMStringProperty::None;
|
| + }
|
| +};
|
| +
|
| +// Accessibility Object Model node
|
| +// Explainer: https://github.com/WICG/aom/blob/master/explainer.md
|
| +// Spec: https://wicg.github.io/aom/spec/
|
| +class CORE_EXPORT AccessibleNode
|
| + : public GarbageCollectedFinalized<AccessibleNode>,
|
| + public ScriptWrappable {
|
| + DEFINE_WRAPPERTYPEINFO();
|
| +
|
| + public:
|
| + AccessibleNode(Element*);
|
| + virtual ~AccessibleNode();
|
| +
|
| + const AtomicString& getProperty(AOMStringProperty) const;
|
| +
|
| + String role() const;
|
| + void setRole(const String&);
|
| +
|
| + String label() const;
|
| + void setLabel(const String&);
|
| +
|
| + DECLARE_VIRTUAL_TRACE();
|
| +
|
| + private:
|
| + HashMap<AOMStringProperty,
|
| + AtomicString,
|
| + WTF::IntHash<AOMStringProperty>,
|
| + AOMStringPropertyHashTraits>
|
| + m_stringProperties;
|
| +
|
| + // This object's owner Element.
|
| + WeakMember<Element> m_element;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // AccessibleNode_h
|
|
|