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

Unified Diff: remoting/host/host_window_proxy.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/host_window_proxy.h ('k') | remoting/host/in_memory_host_config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_window_proxy.cc
diff --git a/remoting/host/host_window_proxy.cc b/remoting/host/host_window_proxy.cc
index 6e806d204916a0eb695a05d1729d4f7f9a2419e6..bdaf5190c0ead25bb53a13f7f7b94d28f4941a9f 100644
--- a/remoting/host/host_window_proxy.cc
+++ b/remoting/host/host_window_proxy.cc
@@ -30,19 +30,18 @@ class HostWindowProxy::Core
private:
friend class base::RefCountedThreadSafe<Core>;
- virtual ~Core();
+ ~Core() override;
// Start() and Stop() equivalents called on the |ui_task_runner_| thread.
void StartOnUiThread(const std::string& client_jid);
void StopOnUiThread();
// ClientSessionControl interface.
- virtual const std::string& client_jid() const override;
- virtual void DisconnectSession() override;
- virtual void OnLocalMouseMoved(
- const webrtc::DesktopVector& position) override;
- virtual void SetDisableInputs(bool disable_inputs) override;
- virtual void ResetVideoPipeline() override;
+ const std::string& client_jid() const override;
+ void DisconnectSession() override;
+ void OnLocalMouseMoved(const webrtc::DesktopVector& position) override;
+ void SetDisableInputs(bool disable_inputs) override;
+ void ResetVideoPipeline() 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/host_window_proxy.h ('k') | remoting/host/in_memory_host_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698