Chromium Code Reviews| 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 08becb5cc8ede705ecfb265f635cbb9fe83ae5b2..77fa5e777f10162fcb2e62e2b57c92e58f741ae3 100644 |
| --- a/third_party/WebKit/Source/core/events/PointerEventFactory.h |
| +++ b/third_party/WebKit/Source/core/events/PointerEventFactory.h |
| @@ -37,7 +37,8 @@ public: |
| PointerEvent* create(const AtomicString& type, |
| const PlatformTouchPoint&, PlatformEvent::Modifiers, |
| const FloatSize& pointRadius, |
| - const FloatPoint& clientPoint); |
| + const FloatPoint& clientPoint, |
| + LocalDOMWindow*); |
|
dtapuska
2016/05/13 16:57:53
This should be a DOMWindow* and not a LocalDOMWind
Navid Zolghadr
2016/05/16 13:34:41
Done.
|
| PointerEvent* createPointerCancelEvent( |
| const int pointerId, const WebPointerProperties::PointerType); |
| @@ -47,8 +48,8 @@ public: |
| PointerEvent*, |
| const AtomicString&); |
| - // For creating transition events (i.e pointerout/leave/over/enter) |
| - PointerEvent* createPointerTransitionEvent( |
| + // For creating boundary events (i.e pointerout/leave/over/enter) |
| + PointerEvent* createPointerBoundaryEvent( |
| PointerEvent*, |
| const AtomicString&, |
| EventTarget*); |