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

Unified Diff: remoting/host/input_injector_mac.cc

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (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
« no previous file with comments | « remoting/host/in_memory_host_config.h ('k') | remoting/host/ipc_audio_capturer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/input_injector_mac.cc
diff --git a/remoting/host/input_injector_mac.cc b/remoting/host/input_injector_mac.cc
index 683fa0bc323785484baf005cc45dd1a031a2579f..b51b6152235cfb7553d651faa449ccb2e6294d37 100644
--- a/remoting/host/input_injector_mac.cc
+++ b/remoting/host/input_injector_mac.cc
@@ -60,19 +60,18 @@ class InputInjectorMac : public InputInjector {
public:
explicit InputInjectorMac(
scoped_refptr<base::SingleThreadTaskRunner> task_runner);
- virtual ~InputInjectorMac();
+ ~InputInjectorMac() override;
// ClipboardStub interface.
- virtual void InjectClipboardEvent(const ClipboardEvent& event) override;
+ void InjectClipboardEvent(const ClipboardEvent& event) override;
// InputStub interface.
- virtual void InjectKeyEvent(const KeyEvent& event) override;
- virtual void InjectTextEvent(const TextEvent& event) override;
- virtual void InjectMouseEvent(const MouseEvent& event) override;
+ void InjectKeyEvent(const KeyEvent& event) override;
+ void InjectTextEvent(const TextEvent& event) override;
+ void InjectMouseEvent(const MouseEvent& event) override;
// InputInjector interface.
- virtual void Start(
- scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
+ void Start(scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
private:
// The actual implementation resides in InputInjectorMac::Core class.
« no previous file with comments | « remoting/host/in_memory_host_config.h ('k') | remoting/host/ipc_audio_capturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698