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

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

Issue 1955643002: Add UMA metric to track the time saved on making events passive during fling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Set dispatch type to forcepassive Created 4 years, 7 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 21 matching lines...) Expand all
32 : PlatformEvent(PlatformEvent::TouchStart) 32 : PlatformEvent(PlatformEvent::TouchStart)
33 , m_dispatchType(PlatformEvent::Blocking) 33 , m_dispatchType(PlatformEvent::Blocking)
34 , m_causesScrollingIfUncanceled(false) 34 , m_causesScrollingIfUncanceled(false)
35 , m_shouldForceBePassive(false) 35 , m_shouldForceBePassive(false)
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 | | m_dispatchType == ListenersForcedNonBlockingPassive; }
dtapuska 2016/05/05 19:58:27 ok this seems wrong to me; if listeners are forced
43 bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncance led; } 43 bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncance led; }
44 bool shouldForceBePassive() const { return m_shouldForceBePassive; } 44 bool shouldForceBePassive() const { return m_shouldForceBePassive; }
45 45
46 protected: 46 protected:
47 Vector<PlatformTouchPoint> m_touchPoints; 47 Vector<PlatformTouchPoint> m_touchPoints;
48 DispatchType m_dispatchType; 48 DispatchType m_dispatchType;
49 bool m_causesScrollingIfUncanceled; 49 bool m_causesScrollingIfUncanceled;
50 bool m_shouldForceBePassive; 50 bool m_shouldForceBePassive;
51 }; 51 };
52 52
53 } // namespace blink 53 } // namespace blink
54 54
55 #endif // PlatformTouchEvent_h 55 #endif // PlatformTouchEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698