Index: content/browser/renderer_host/input/touch_selection_controller.h |
diff --git a/content/browser/renderer_host/input/touch_selection_controller.h b/content/browser/renderer_host/input/touch_selection_controller.h |
index 4e33594acc353d1784710ca32041c3ee269ab694..1ded1a97a1c7e607200cf918782cd968b9cbf3f7 100644 |
--- a/content/browser/renderer_host/input/touch_selection_controller.h |
+++ b/content/browser/renderer_host/input/touch_selection_controller.h |
@@ -44,7 +44,7 @@ class CONTENT_EXPORT TouchSelectionController : public TouchHandleClient { |
TouchSelectionController(TouchSelectionControllerClient* client, |
base::TimeDelta tap_timeout, |
float tap_slop); |
- virtual ~TouchSelectionController(); |
+ ~TouchSelectionController() override; |
// To be called when the selection bounds have changed. |
// Note that such updates will trigger handle updates only if preceded |
@@ -86,15 +86,15 @@ class CONTENT_EXPORT TouchSelectionController : public TouchHandleClient { |
enum InputEventType { TAP, LONG_PRESS, INPUT_EVENT_TYPE_NONE }; |
// TouchHandleClient implementation. |
- virtual void OnHandleDragBegin(const TouchHandle& handle) override; |
- virtual void OnHandleDragUpdate(const TouchHandle& handle, |
- const gfx::PointF& new_position) override; |
- virtual void OnHandleDragEnd(const TouchHandle& handle) override; |
- virtual void OnHandleTapped(const TouchHandle& handle) override; |
- virtual void SetNeedsAnimate() override; |
- virtual scoped_ptr<TouchHandleDrawable> CreateDrawable() override; |
- virtual base::TimeDelta GetTapTimeout() const override; |
- virtual float GetTapSlop() const override; |
+ void OnHandleDragBegin(const TouchHandle& handle) override; |
+ void OnHandleDragUpdate(const TouchHandle& handle, |
+ const gfx::PointF& new_position) override; |
+ void OnHandleDragEnd(const TouchHandle& handle) override; |
+ void OnHandleTapped(const TouchHandle& handle) override; |
+ void SetNeedsAnimate() override; |
+ scoped_ptr<TouchHandleDrawable> CreateDrawable() override; |
+ base::TimeDelta GetTapTimeout() const override; |
+ float GetTapSlop() const override; |
void ShowInsertionHandleAutomatically(); |
void ShowSelectionHandlesAutomatically(); |