Index: third_party/WebKit/Source/modules/accessibility/AXRadioInput.h |
diff --git a/third_party/WebKit/Source/modules/accessibility/AXRadioInput.h b/third_party/WebKit/Source/modules/accessibility/AXRadioInput.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..14adaee4eddeb6c8cfda9acaf41b2ba7413a6ab1 |
--- /dev/null |
+++ b/third_party/WebKit/Source/modules/accessibility/AXRadioInput.h |
@@ -0,0 +1,42 @@ |
+// Copyright 2016 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 AXRadioInput_h |
+#define AXRadioInput_h |
+ |
+#include "modules/accessibility/AXLayoutObject.h" |
+ |
+namespace blink { |
+ |
+class AXObjectCacheImpl; |
+class HTMLInputElement; |
+ |
+class AXRadioInput final : public AXLayoutObject { |
+ |
+public: |
+ static AXRadioInput* create(LayoutObject*, AXObjectCacheImpl&); |
+ ~AXRadioInput() override { } |
+ |
+ bool isAXRadioInput() const override { return true; } |
+ void posInSetChanged(int position) { m_posInSet = position; } |
+ |
+ int posInSet() const final; |
+ int setSize() const final; |
+ |
+private: |
+ AXRadioInput(LayoutObject*, AXObjectCacheImpl&); |
+ HTMLInputElement* element() const; |
+ int sizeOfRadioGroup() const; |
+ |
+ int m_posInSet; |
+ |
+}; |
+ |
+DEFINE_AX_OBJECT_TYPE_CASTS(AXRadioInput, isAXRadioInput()); |
+ |
+} // namespace blink |
+ |
+#endif // AXRadioInput_h |
+ |