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

Unified Diff: content/renderer/input/input_handler_wrapper.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/renderer/input/input_handler_wrapper.h
diff --git a/content/renderer/input/input_handler_wrapper.h b/content/renderer/input/input_handler_wrapper.h
index e43040eda2a22704814f0c1a580dca8b980c339c..063267e49eac7fccb06f872eada8c10fa3bcd42e 100644
--- a/content/renderer/input/input_handler_wrapper.h
+++ b/content/renderer/input/input_handler_wrapper.h
@@ -27,16 +27,16 @@ class InputHandlerWrapper : public InputHandlerProxyClient {
InputHandlerProxy* input_handler_proxy() { return &input_handler_proxy_; }
// InputHandlerProxyClient implementation.
- virtual void WillShutdown() OVERRIDE;
+ virtual void WillShutdown() override;
virtual void TransferActiveWheelFlingAnimation(
- const blink::WebActiveWheelFlingParameters& params) OVERRIDE;
+ const blink::WebActiveWheelFlingParameters& params) override;
virtual blink::WebGestureCurve* CreateFlingAnimationCurve(
blink::WebGestureDevice deviceSource,
const blink::WebFloatPoint& velocity,
- const blink::WebSize& cumulativeScroll) OVERRIDE;
- virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE;
- virtual void DidStopFlinging() OVERRIDE;
- virtual void DidReceiveInputEvent() OVERRIDE;
+ const blink::WebSize& cumulativeScroll) override;
+ virtual void DidOverscroll(const DidOverscrollParams& params) override;
+ virtual void DidStopFlinging() override;
+ virtual void DidReceiveInputEvent() override;
private:
InputHandlerManager* input_handler_manager_;
« no previous file with comments | « content/renderer/input/input_handler_proxy_unittest.cc ('k') | content/renderer/java/gin_java_bridge_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698