| Index: third_party/WebKit/Source/core/html/HTMLInputElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.h b/third_party/WebKit/Source/core/html/HTMLInputElement.h
|
| index fd9bea014b8dd76a2f774a768141f477da7d6ecc..6e61b826b18ddd085241f1ff3705ae81ece4aecf 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.h
|
| @@ -287,6 +287,7 @@
|
| InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| void removedFrom(ContainerNode*) final;
|
| void didMoveToNewDocument(Document& oldDocument) final;
|
| + void removeAllEventListeners() final;
|
|
|
| bool hasCustomFocusLogic() const final;
|
| bool isKeyboardFocusable() const final;
|
| @@ -356,6 +357,7 @@
|
| void requiredAttributeChanged() final;
|
| void disabledAttributeChanged() final;
|
|
|
| + void updateTouchEventHandlerRegistry();
|
| void initializeTypeInParsing();
|
| void updateType();
|
|
|
| @@ -393,6 +395,7 @@
|
| unsigned m_parsingInProgress : 1;
|
| unsigned m_valueAttributeWasUpdatedAfterParsing : 1;
|
| unsigned m_canReceiveDroppedFiles : 1;
|
| + unsigned m_hasTouchEventHandler : 1;
|
| unsigned m_shouldRevealPassword : 1;
|
| unsigned m_needsToUpdateViewValue : 1;
|
| unsigned m_isPlaceholderVisible : 1;
|
|
|