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

Side by Side Diff: third_party/WebKit/Source/platform/PlatformTouchEvent.h

Issue 1989623002: Suppressed MEs for gestures from cancelled PEs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 6 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 /* 1 /*
2 Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) 2 Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 25 matching lines...) Expand all
36 { 36 {
37 } 37 }
38 38
39 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints ; } 39 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints ; }
40 40
41 DispatchType dispatchType() const { return m_dispatchType; } 41 DispatchType dispatchType() const { return m_dispatchType; }
42 bool cancelable() const { return m_dispatchType == PlatformEvent::Blocking; } 42 bool cancelable() const { return m_dispatchType == PlatformEvent::Blocking; }
43 bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncance led; } 43 bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncance led; }
44 bool dispatchedDuringFling() const { return m_dispatchedDuringFling; } 44 bool dispatchedDuringFling() const { return m_dispatchedDuringFling; }
45 45
46 uint32_t uniqueTouchEventId() const { return m_uniqueTouchEventId; }
47
46 protected: 48 protected:
47 Vector<PlatformTouchPoint> m_touchPoints; 49 Vector<PlatformTouchPoint> m_touchPoints;
48 DispatchType m_dispatchType; 50 DispatchType m_dispatchType;
49 bool m_causesScrollingIfUncanceled; 51 bool m_causesScrollingIfUncanceled;
50 bool m_dispatchedDuringFling; 52 bool m_dispatchedDuringFling;
53
54 uint32_t m_uniqueTouchEventId;
51 }; 55 };
52 56
53 } // namespace blink 57 } // namespace blink
54 58
55 #endif // PlatformTouchEvent_h 59 #endif // PlatformTouchEvent_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/PlatformGestureEvent.h ('k') | third_party/WebKit/Source/web/WebInputEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698