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

Unified Diff: Source/core/events/MouseRelatedEvent.h

Issue 453493002: Improve detection of touch events when hiding media controls. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@autoHideControls
Patch Set: Cannot use isSimulated, so define derivesFromTouch Created 6 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: Source/core/events/MouseRelatedEvent.h
diff --git a/Source/core/events/MouseRelatedEvent.h b/Source/core/events/MouseRelatedEvent.h
index 21dc6a54cc78b941ae8cf5720f8c399da3a3cab4..75659c38f1b0185b448ffea5243e5904a17f3141 100644
--- a/Source/core/events/MouseRelatedEvent.h
+++ b/Source/core/events/MouseRelatedEvent.h
@@ -47,6 +47,7 @@ namespace blink {
int offsetX();
int offsetY();
bool isSimulated() const { return m_isSimulated; }
+ bool derivesFromTouch() const { return m_derivesFromTouch; }
virtual int pageX() const OVERRIDE FINAL;
virtual int pageY() const OVERRIDE FINAL;
int x() const;
@@ -61,10 +62,10 @@ namespace blink {
protected:
MouseRelatedEvent();
- MouseRelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
- int detail, const IntPoint& screenLocation, const IntPoint& windowLocation,
- const IntPoint& movementDelta,
- bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated = false);
+ MouseRelatedEvent(const AtomicString& type, bool canBubble, bool cancelable,
+ PassRefPtrWillBeRawPtr<AbstractView>, int detail, const IntPoint& screenLocation,
+ const IntPoint& windowLocation, const IntPoint& movementDelta, bool ctrlKey, bool altKey,
+ bool shiftKey, bool metaKey, bool isSimulated = false, bool derivesFromTouch = false);
void initCoordinates();
void initCoordinates(const LayoutPoint& clientLocation);
@@ -85,6 +86,7 @@ namespace blink {
LayoutPoint m_absoluteLocation;
bool m_isSimulated;
bool m_hasCachedRelativePosition;
+ bool m_derivesFromTouch;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698