| Index: ui/events/gesture_detection/velocity_tracker_unittest.cc
|
| diff --git a/ui/events/gesture_detection/velocity_tracker_unittest.cc b/ui/events/gesture_detection/velocity_tracker_unittest.cc
|
| index 85a1f5d98f1094d5992de3c99d66dc21625328d1..7bcf75c82c5343bfbdb75eb741a67e61d11b0e23 100644
|
| --- a/ui/events/gesture_detection/velocity_tracker_unittest.cc
|
| +++ b/ui/events/gesture_detection/velocity_tracker_unittest.cc
|
| @@ -48,7 +48,7 @@ class VelocityTrackerTest : public testing::Test {
|
|
|
| protected:
|
| static MockMotionEvent Sample(MotionEvent::Action action,
|
| - gfx::PointF p0,
|
| + const gfx::PointF& p0,
|
| TimeTicks t0,
|
| gfx::Vector2dF v,
|
| TimeDelta dt) {
|
| @@ -57,7 +57,7 @@ class VelocityTrackerTest : public testing::Test {
|
| }
|
|
|
| static void ApplyMovementSequence(VelocityTrackerState* state,
|
| - gfx::PointF p0,
|
| + const gfx::PointF& p0,
|
| gfx::Vector2dF v,
|
| TimeTicks t0,
|
| TimeDelta t,
|
| @@ -72,7 +72,7 @@ class VelocityTrackerTest : public testing::Test {
|
| }
|
|
|
| static void ApplyMovement(VelocityTrackerState* state,
|
| - gfx::PointF p0,
|
| + const gfx::PointF& p0,
|
| gfx::Vector2dF v,
|
| TimeTicks t0,
|
| TimeDelta t,
|
|
|