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

Unified Diff: content/browser/renderer_host/input/touch_selection_controller.h

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
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 13031e12b9b326733fa02d7a5f5d94af13afae61..4e33594acc353d1784710ca32041c3ee269ab694 100644
--- a/content/browser/renderer_host/input/touch_selection_controller.h
+++ b/content/browser/renderer_host/input/touch_selection_controller.h
@@ -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 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;
+ 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 ShowInsertionHandleAutomatically();
void ShowSelectionHandlesAutomatically();

Powered by Google App Engine
This is Rietveld 408576698