Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.h

Issue 2209773002: Remove the blocking touch handlers for the input[type=range] and add touch-action instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check if element is nullptr to fix the crash Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 6e61b826b18ddd085241f1ff3705ae81ece4aecf..fd9bea014b8dd76a2f774a768141f477da7d6ecc 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.h
@@ -287,7 +287,6 @@ private:
InsertionNotificationRequest insertedInto(ContainerNode*) override;
void removedFrom(ContainerNode*) final;
void didMoveToNewDocument(Document& oldDocument) final;
- void removeAllEventListeners() final;
bool hasCustomFocusLogic() const final;
bool isKeyboardFocusable() const final;
@@ -357,7 +356,6 @@ private:
void requiredAttributeChanged() final;
void disabledAttributeChanged() final;
- void updateTouchEventHandlerRegistry();
void initializeTypeInParsing();
void updateType();
@@ -395,7 +393,6 @@ private:
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;

Powered by Google App Engine
This is Rietveld 408576698