browser(webkit): fix mac compilation errors (#4139)

This commit is contained in:
Joel Einbinder 2020-10-14 10:35:45 -07:00 committed by GitHub
parent c7b23599bc
commit a169cb63f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
1355
Changed: einbinder@chromium.org Wed 14 Oct 2020 05:37:36 AM PDT
1356
Changed: einbinder@chromium.org Wed 14 Oct 2020 08:57:55 AM PDT

View File

@ -1995,7 +1995,7 @@ index c8a849d98d04e3d23d349ede31dad76c20fb17f8..b5dcc6f0cd2a0785ad050e3d8e6ff267
return false;
diff --git a/Source/WebCore/dom/PointerEvent.cpp b/Source/WebCore/dom/PointerEvent.cpp
index 3cc7f016fb8414d7385c1189a7595940d1972a4b..e24c885701d593c9f07a966766064f58adba479b 100644
index 3cc7f016fb8414d7385c1189a7595940d1972a4b..5a7fc02255900a9f9705567e79ee43718436cf2d 100644
--- a/Source/WebCore/dom/PointerEvent.cpp
+++ b/Source/WebCore/dom/PointerEvent.cpp
@@ -129,4 +129,61 @@ EventInterface PointerEvent::eventInterface() const
@ -2017,6 +2017,8 @@ index 3cc7f016fb8414d7385c1189a7595940d1972a4b..e24c885701d593c9f07a966766064f58
+ return eventNames().pointerupEvent;
+ case PlatformTouchPoint::State::TouchCancelled:
+ return eventNames().pointercancelEvent;
+ case PlatformTouchPoint::State::TouchStateEnd:
+ break;
+ }
+ ASSERT_NOT_REACHED();
+ return nullAtom();
@ -2052,8 +2054,6 @@ index 3cc7f016fb8414d7385c1189a7595940d1972a4b..e24c885701d593c9f07a966766064f58
+ , m_pressure(event.touchPoints().at(index).force())
+ , m_pointerType(PointerEvent::touchPointerType())
+ , m_isPrimary(isPrimary)
+ , m_tiltX(0)
+ , m_tiltY(0)
+{
+}
+