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

Unified Diff: remoting/host/basic_desktop_environment.h

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/codec/video_encoder_vpx.h ('k') | remoting/host/cast_extension.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/basic_desktop_environment.h
diff --git a/remoting/host/basic_desktop_environment.h b/remoting/host/basic_desktop_environment.h
index a5416b225d0d4253027b308beccfbda15d58a35e..6b6b8e25ede0e94a14c63af789926a45a7a8e130 100644
--- a/remoting/host/basic_desktop_environment.h
+++ b/remoting/host/basic_desktop_environment.h
@@ -27,18 +27,17 @@ class GnubbyAuthHandler;
// the local console.
class BasicDesktopEnvironment : public DesktopEnvironment {
public:
- virtual ~BasicDesktopEnvironment();
+ ~BasicDesktopEnvironment() override;
// DesktopEnvironment implementation.
- virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() override;
- virtual scoped_ptr<InputInjector> CreateInputInjector() override;
- virtual scoped_ptr<ScreenControls> CreateScreenControls() override;
- virtual scoped_ptr<webrtc::DesktopCapturer> CreateVideoCapturer() override;
- virtual scoped_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor()
- override;
- virtual std::string GetCapabilities() const override;
- virtual void SetCapabilities(const std::string& capabilities) override;
- virtual scoped_ptr<GnubbyAuthHandler> CreateGnubbyAuthHandler(
+ scoped_ptr<AudioCapturer> CreateAudioCapturer() override;
+ scoped_ptr<InputInjector> CreateInputInjector() override;
+ scoped_ptr<ScreenControls> CreateScreenControls() override;
+ scoped_ptr<webrtc::DesktopCapturer> CreateVideoCapturer() override;
+ scoped_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor() override;
+ std::string GetCapabilities() const override;
+ void SetCapabilities(const std::string& capabilities) override;
+ scoped_ptr<GnubbyAuthHandler> CreateGnubbyAuthHandler(
protocol::ClientStub* client_stub) override;
protected:
@@ -93,10 +92,10 @@ class BasicDesktopEnvironmentFactory : public DesktopEnvironmentFactory {
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner);
- virtual ~BasicDesktopEnvironmentFactory();
+ ~BasicDesktopEnvironmentFactory() override;
// DesktopEnvironmentFactory implementation.
- virtual bool SupportsAudioCapture() const override;
+ bool SupportsAudioCapture() const override;
protected:
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner() const {
« no previous file with comments | « remoting/codec/video_encoder_vpx.h ('k') | remoting/host/cast_extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698