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

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: Fixed a comment. 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
dtapuska 2016/06/03 15:02:11 Can this fit on one line like the inlines above? (
mustaq 2016/06/03 20:34:45 Done.
47 {
48 return m_uniqueTouchEventId;
49 }
50
46 protected: 51 protected:
47 Vector<PlatformTouchPoint> m_touchPoints; 52 Vector<PlatformTouchPoint> m_touchPoints;
48 DispatchType m_dispatchType; 53 DispatchType m_dispatchType;
49 bool m_causesScrollingIfUncanceled; 54 bool m_causesScrollingIfUncanceled;
50 bool m_dispatchedDuringFling; 55 bool m_dispatchedDuringFling;
56
57 uint32_t m_uniqueTouchEventId;
51 }; 58 };
52 59
53 } // namespace blink 60 } // namespace blink
54 61
55 #endif // PlatformTouchEvent_h 62 #endif // PlatformTouchEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698