| Index: third_party/WebKit/Source/core/html/ValidityState.h
|
| diff --git a/third_party/WebKit/Source/core/html/ValidityState.h b/third_party/WebKit/Source/core/html/ValidityState.h
|
| index 6ebc784ece5e48f751f0077191d71375cc7ec469..6fb24bd4af758a72a6049c23ae11fe33ae92e6e5 100644
|
| --- a/third_party/WebKit/Source/core/html/ValidityState.h
|
| +++ b/third_party/WebKit/Source/core/html/ValidityState.h
|
| @@ -25,7 +25,7 @@
|
| #define ValidityState_h
|
|
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| -#include "core/html/FormAssociatedElement.h"
|
| +#include "core/html/ListedElement.h"
|
|
|
| namespace blink {
|
|
|
| @@ -35,7 +35,7 @@ class ValidityState final : public GarbageCollected<ValidityState>,
|
| WTF_MAKE_NONCOPYABLE(ValidityState);
|
|
|
| public:
|
| - static ValidityState* create(FormAssociatedElement* control) {
|
| + static ValidityState* create(ListedElement* control) {
|
| return new ValidityState(control);
|
| }
|
| DEFINE_INLINE_TRACE() { visitor->trace(m_control); }
|
| @@ -57,9 +57,9 @@ class ValidityState final : public GarbageCollected<ValidityState>,
|
| bool valid() const;
|
|
|
| private:
|
| - explicit ValidityState(FormAssociatedElement* control) : m_control(control) {}
|
| + explicit ValidityState(ListedElement* control) : m_control(control) {}
|
|
|
| - Member<FormAssociatedElement> m_control;
|
| + Member<ListedElement> m_control;
|
| };
|
|
|
| } // namespace blink
|
|
|