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

Unified Diff: remoting/host/local_input_monitor_mac.mm

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/json_host_config.h ('k') | remoting/host/me2me_desktop_environment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/local_input_monitor_mac.mm
diff --git a/remoting/host/local_input_monitor_mac.mm b/remoting/host/local_input_monitor_mac.mm
index 8ffdb72c3c567f078b1fa47a84fe05eaeb431d95..d4256587df6a9b9bef908c6edff2c6086d0d6716 100644
--- a/remoting/host/local_input_monitor_mac.mm
+++ b/remoting/host/local_input_monitor_mac.mm
@@ -43,7 +43,7 @@ class LocalInputMonitorMac : public base::NonThreadSafe,
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
base::WeakPtr<ClientSessionControl> client_session_control);
- virtual ~LocalInputMonitorMac();
+ ~LocalInputMonitorMac() override;
private:
// The actual implementation resides in LocalInputMonitorMac::Core class.
@@ -168,15 +168,14 @@ class LocalInputMonitorMac::Core
private:
friend class base::RefCountedThreadSafe<Core>;
- virtual ~Core();
+ ~Core() override;
void StartOnUiThread();
void StopOnUiThread();
// EventHandler interface.
- virtual void OnLocalMouseMoved(
- const webrtc::DesktopVector& position) override;
- virtual void OnDisconnectShortcut() override;
+ void OnLocalMouseMoved(const webrtc::DesktopVector& position) override;
+ void OnDisconnectShortcut() override;
// Task runner on which public methods of this class must be called.
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_;
« no previous file with comments | « remoting/host/json_host_config.h ('k') | remoting/host/me2me_desktop_environment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698