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

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

Issue 670683003: Standardize usage of virtual/override/final 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 59af5d445dcdf41b6736fa4ab4806e9ac7e1e60e..e7982f6ffd4085885d81bc3d747cca8ba9c94ace 100644
--- a/content/renderer/input/input_event_filter.h
+++ b/content/renderer/input/input_event_filter.h
@@ -54,22 +54,22 @@ 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 DidAddInputHandler(int routing_id,
- 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;
+ void SetBoundHandler(const Handler& handler) override;
+ void DidAddInputHandler(int routing_id,
+ cc::InputHandler* input_handler) override;
+ void DidRemoveInputHandler(int routing_id) override;
+ void DidOverscroll(int routing_id,
+ const DidOverscrollParams& params) override;
+ 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;
+ void OnFilterAdded(IPC::Sender* sender) override;
+ void OnFilterRemoved() override;
+ void OnChannelClosing() override;
+ bool OnMessageReceived(const IPC::Message& message) override;
private:
- virtual ~InputEventFilter();
+ ~InputEventFilter() override;
void ForwardToMainListener(const IPC::Message& message);
void ForwardToHandler(const IPC::Message& message);
« 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