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

Side by Side Diff: third_party/WebKit/Source/core/input/PointerEventManager.h

Issue 2245063006: Revert of Refactoring button field and its type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix patch apply Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PointerEventManager_h 5 #ifndef PointerEventManager_h
6 #define PointerEventManager_h 6 #define PointerEventManager_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/events/PointerEvent.h" 9 #include "core/events/PointerEvent.h"
10 #include "core/events/PointerEventFactory.h" 10 #include "core/events/PointerEventFactory.h"
(...skipping 17 matching lines...) Expand all
28 ~PointerEventManager(); 28 ~PointerEventManager();
29 DECLARE_TRACE(); 29 DECLARE_TRACE();
30 30
31 // Sends the mouse pointer events and the boundary events 31 // Sends the mouse pointer events and the boundary events
32 // that it may cause. It also sends the compat mouse events 32 // that it may cause. It also sends the compat mouse events
33 // and sets the newNodeUnderMouse if the capturing is set 33 // and sets the newNodeUnderMouse if the capturing is set
34 // in this function. 34 // in this function.
35 WebInputEventResult sendMousePointerEvent( 35 WebInputEventResult sendMousePointerEvent(
36 Node* target, const AtomicString& type, 36 Node* target, const AtomicString& type,
37 int clickCount, const PlatformMouseEvent&, 37 int clickCount, const PlatformMouseEvent&,
38 Node* relatedTarget,
38 Node* lastNodeUnderMouse, 39 Node* lastNodeUnderMouse,
39 Node** newNodeUnderMouse); 40 Node** newNodeUnderMouse);
40 41
41 WebInputEventResult handleTouchEvents( 42 WebInputEventResult handleTouchEvents(
42 const PlatformTouchEvent&); 43 const PlatformTouchEvent&);
43 44
44 // Sends boundary events mouseout/leave/over/enter to the 45 // Sends boundary events mouseout/leave/over/enter to the
45 // corresponding targets. This function sends pointerout/leave/over/enter 46 // corresponding targets. This function sends pointerout/leave/over/enter
46 // only when isFrameBoundaryTransition is true which indicates the 47 // only when isFrameBoundaryTransition is true which indicates the
47 // transition is over the document boundary and not only the elements border 48 // transition is over the document boundary and not only the elements border
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 PointerCapturingMap m_pointerCaptureTarget; 189 PointerCapturingMap m_pointerCaptureTarget;
189 PointerCapturingMap m_pendingPointerCaptureTarget; 190 PointerCapturingMap m_pendingPointerCaptureTarget;
190 191
191 PointerEventFactory m_pointerEventFactory; 192 PointerEventFactory m_pointerEventFactory;
192 TouchEventManager m_touchEventManager; 193 TouchEventManager m_touchEventManager;
193 }; 194 };
194 195
195 } // namespace blink 196 } // namespace blink
196 197
197 #endif // PointerEventManager_h 198 #endif // PointerEventManager_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/GestureManager.cpp ('k') | third_party/WebKit/Source/core/input/PointerEventManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698