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

Unified Diff: remoting/host/audio_capturer_linux.h

Issue 660803004: Standardize usage of virtual/override/final specifiers. (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/client/client_status_logger_unittest.cc ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/audio_capturer_linux.h
diff --git a/remoting/host/audio_capturer_linux.h b/remoting/host/audio_capturer_linux.h
index 6f29a1b5e5545a6ad4ef8bc747385d1a97557296..a90d2a2b5df1330bdda5d7525ad6d247b11651cf 100644
--- a/remoting/host/audio_capturer_linux.h
+++ b/remoting/host/audio_capturer_linux.h
@@ -30,15 +30,15 @@ class AudioCapturerLinux : public AudioCapturer,
explicit AudioCapturerLinux(
scoped_refptr<AudioPipeReader> pipe_reader);
- virtual ~AudioCapturerLinux();
+ ~AudioCapturerLinux() override;
// AudioCapturer interface.
- virtual bool Start(const PacketCapturedCallback& callback) override;
- virtual void Stop() override;
- virtual bool IsStarted() override;
+ bool Start(const PacketCapturedCallback& callback) override;
+ void Stop() override;
+ bool IsStarted() override;
// AudioPipeReader::StreamObserver interface.
- virtual void OnDataRead(scoped_refptr<base::RefCountedString> data) override;
+ void OnDataRead(scoped_refptr<base::RefCountedString> data) override;
private:
scoped_refptr<AudioPipeReader> pipe_reader_;
« no previous file with comments | « remoting/client/client_status_logger_unittest.cc ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698