| Index: ui/events/gestures/fling_curve.h
|
| diff --git a/ui/events/gestures/fling_curve.h b/ui/events/gestures/fling_curve.h
|
| index bebf6ab7460188a496b21334b74b448b0b06357b..edf0910241b30fc1d1cc7ac384817807688ab019 100644
|
| --- a/ui/events/gestures/fling_curve.h
|
| +++ b/ui/events/gestures/fling_curve.h
|
| @@ -18,12 +18,12 @@ namespace ui {
|
| class EVENTS_BASE_EXPORT FlingCurve : public GestureCurve {
|
| public:
|
| FlingCurve(const gfx::Vector2dF& velocity, base::TimeTicks start_timestamp);
|
| - virtual ~FlingCurve();
|
| + ~FlingCurve() override;
|
|
|
| // GestureCurve implementation.
|
| - virtual bool ComputeScrollOffset(base::TimeTicks time,
|
| - gfx::Vector2dF* offset,
|
| - gfx::Vector2dF* velocity) override;
|
| + bool ComputeScrollOffset(base::TimeTicks time,
|
| + gfx::Vector2dF* offset,
|
| + gfx::Vector2dF* velocity) override;
|
|
|
| // In contrast to |ComputeScrollOffset()|, this method is stateful and
|
| // returns the *change* in scroll offset between successive calls.
|
|
|