| Index: third_party/WebKit/Source/core/html/HTMLElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLElement.h b/third_party/WebKit/Source/core/html/HTMLElement.h
|
| index 9ad60ed559ed3b682f782e35b2d26e7db18a71bb..6c5d7e188fe84001f1019178c584e0bf23b380ad 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLElement.h
|
| @@ -29,9 +29,10 @@
|
| namespace blink {
|
|
|
| class DocumentFragment;
|
| +class ExceptionState;
|
| +class FormAssociated;
|
| class HTMLFormElement;
|
| class HTMLMenuElement;
|
| -class ExceptionState;
|
| class KeyboardEvent;
|
|
|
| enum TranslateAttributeMode {
|
| @@ -119,6 +120,8 @@ class CORE_EXPORT HTMLElement : public Element {
|
|
|
| Element* unclosedOffsetParent();
|
|
|
| + virtual FormAssociated* toFormAssociatedOrNull() { return nullptr; };
|
| +
|
| protected:
|
| HTMLElement(const QualifiedName& tagName, Document&, ConstructionType);
|
|
|
|
|