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

Unified Diff: third_party/WebKit/Source/core/events/PointerEventFactory.h

Issue 1838973003: Send lostpointercapture on touch capturing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/events/PointerEventFactory.h
diff --git a/third_party/WebKit/Source/core/events/PointerEventFactory.h b/third_party/WebKit/Source/core/events/PointerEventFactory.h
index 26f304298492ef590bd524ddfa0dac03437c94b6..d6ae74d1ddf7f187ad95d947b7341e707a279337 100644
--- a/third_party/WebKit/Source/core/events/PointerEventFactory.h
+++ b/third_party/WebKit/Source/core/events/PointerEventFactory.h
@@ -37,7 +37,7 @@ public:
PassRefPtrWillBeRawPtr<PointerEvent> create(const AtomicString& type,
const PlatformTouchPoint&, PlatformEvent::Modifiers,
const double width, const double height,
- const double clientX, const double clientY);
+ const double clientX, const double clientY, bool &isNew);
PassRefPtrWillBeRawPtr<PointerEvent> createPointerCancelEvent(
const PlatformTouchPoint&);
@@ -89,7 +89,7 @@ private:
int addIdAndActiveButtons(const IncomingId, bool isActiveButtons);
bool isPrimary(const int) const;
- void setIdTypeButtons(PointerEventInit &, const WebPointerProperties &,
+ bool setIdTypeButtons(PointerEventInit &, const WebPointerProperties &,
unsigned buttons);
static const int s_invalidId;

Powered by Google App Engine
This is Rietveld 408576698