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

Unified Diff: content/renderer/input/input_event_filter.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_event_filter.h
diff --git a/content/renderer/input/input_event_filter.h b/content/renderer/input/input_event_filter.h
index 0e39592a47c2efa180dbd2c3d094a13419f26b65..59af5d445dcdf41b6736fa4ab4806e9ac7e1e60e 100644
--- a/content/renderer/input/input_event_filter.h
+++ b/content/renderer/input/input_event_filter.h
@@ -54,19 +54,19 @@ class CONTENT_EXPORT InputEventFilter : public InputHandlerManagerClient,
// is left to the eventual handler to deliver the corresponding
// InputHostMsg_HandleInputEvent_ACK.
//
- virtual void SetBoundHandler(const Handler& handler) OVERRIDE;
+ virtual void SetBoundHandler(const Handler& handler) override;
virtual void DidAddInputHandler(int routing_id,
- cc::InputHandler* input_handler) OVERRIDE;
- virtual void DidRemoveInputHandler(int routing_id) OVERRIDE;
+ cc::InputHandler* input_handler) override;
+ virtual void DidRemoveInputHandler(int routing_id) override;
virtual void DidOverscroll(int routing_id,
- const DidOverscrollParams& params) OVERRIDE;
- virtual void DidStopFlinging(int routing_id) OVERRIDE;
+ const DidOverscrollParams& params) override;
+ virtual void DidStopFlinging(int routing_id) override;
// IPC::MessageFilter methods:
- virtual void OnFilterAdded(IPC::Sender* sender) OVERRIDE;
- virtual void OnFilterRemoved() OVERRIDE;
- virtual void OnChannelClosing() OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual void OnFilterAdded(IPC::Sender* sender) override;
+ virtual void OnFilterRemoved() override;
+ virtual void OnChannelClosing() override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
private:
virtual ~InputEventFilter();
« no previous file with comments | « content/renderer/in_process_renderer_thread.h ('k') | content/renderer/input/input_event_filter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698