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 9e342217270e39a2f8f6dfefbc6292902bd4f70a..4b8485beb44321711337a7a0996d9c0b0c356b7b 100644 |
| --- a/third_party/WebKit/Source/core/events/PointerEventFactory.h |
| +++ b/third_party/WebKit/Source/core/events/PointerEventFactory.h |
| @@ -42,9 +42,15 @@ public: |
| PassRefPtrWillBeRawPtr<PointerEvent> createPointerCancel( |
| const PlatformTouchPoint&); |
| - PassRefPtrWillBeRawPtr<PointerEvent> create( |
| + // For creating capture events (i.e got/lostpointercapture) |
| + PassRefPtrWillBeRawPtr<PointerEvent> createPointerCapture( |
|
mustaq
2016/03/10 19:28:19
Please rename to "createPointerCaptureEvent", othe
Navid Zolghadr
2016/03/10 20:27:35
Done.
|
| + PassRefPtrWillBeRawPtr<PointerEvent>, |
| + const AtomicString&); |
| + |
| + // For creating transition events (i.e pointerout/leave/over/enter) |
| + PassRefPtrWillBeRawPtr<PointerEvent> createPointerTransition( |
|
mustaq
2016/03/10 19:28:19
Same as before: rename to ...Event.
Navid Zolghadr
2016/03/10 20:27:35
Done.
|
| PassRefPtrWillBeRawPtr<PointerEvent>, |
| - const AtomicString& type, |
| + const AtomicString&, |
| PassRefPtrWillBeRawPtr<EventTarget>); |
| // Clear all the existing ids. |