| Index: ui/events/android/scroller.h
|
| diff --git a/ui/events/android/scroller.h b/ui/events/android/scroller.h
|
| index f276a836877e7ed72f7692c8fd1e28b43a1b2f54..37d41cd3e1bfa127dbe0c50234982bb1740e6485 100644
|
| --- a/ui/events/android/scroller.h
|
| +++ b/ui/events/android/scroller.h
|
| @@ -28,12 +28,12 @@ class EVENTS_BASE_EXPORT Scroller : public GestureCurve {
|
| };
|
|
|
| explicit Scroller(const Config& config);
|
| - virtual ~Scroller();
|
| + ~Scroller() 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;
|
|
|
| // Start scrolling by providing a starting point and the distance to travel.
|
| // The default value of 250 milliseconds will be used for the duration.
|
|
|