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

Unified Diff: content/browser/renderer_host/input/synthetic_gesture_target_android.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/synthetic_gesture_target_android.h
diff --git a/content/browser/renderer_host/input/synthetic_gesture_target_android.h b/content/browser/renderer_host/input/synthetic_gesture_target_android.h
index dcf146ffb92a6d325a31c51ff20b9125e3d86c21..571fcbdb76f3f1d52062b5b89da5b7b28063bad3 100644
--- a/content/browser/renderer_host/input/synthetic_gesture_target_android.h
+++ b/content/browser/renderer_host/input/synthetic_gesture_target_android.h
@@ -25,21 +25,21 @@ class SyntheticGestureTargetAndroid : public SyntheticGestureTargetBase {
// SyntheticGestureTargetBase:
virtual void DispatchWebTouchEventToPlatform(
const blink::WebTouchEvent& web_touch,
- const ui::LatencyInfo& latency_info) OVERRIDE;
+ const ui::LatencyInfo& latency_info) override;
virtual void DispatchWebMouseWheelEventToPlatform(
const blink::WebMouseWheelEvent& web_wheel,
- const ui::LatencyInfo& latency_info) OVERRIDE;
+ const ui::LatencyInfo& latency_info) override;
virtual void DispatchWebMouseEventToPlatform(
const blink::WebMouseEvent& web_mouse,
- const ui::LatencyInfo& latency_info) OVERRIDE;
+ const ui::LatencyInfo& latency_info) override;
// SyntheticGestureTarget:
virtual SyntheticGestureParams::GestureSourceType
- GetDefaultSyntheticGestureSourceType() const OVERRIDE;
+ GetDefaultSyntheticGestureSourceType() const override;
- virtual float GetTouchSlopInDips() const OVERRIDE;
+ virtual float GetTouchSlopInDips() const override;
- virtual float GetMinScalingSpanInDips() const OVERRIDE;
+ virtual float GetMinScalingSpanInDips() const override;
private:
// Enum values below need to be kept in sync with TouchEventSynthesizer.java

Powered by Google App Engine
This is Rietveld 408576698