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

Unified Diff: remoting/codec/audio_encoder_verbatim.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/audio_encoder_opus.h ('k') | remoting/codec/video_decoder_verbatim.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/audio_encoder_verbatim.h
diff --git a/remoting/codec/audio_encoder_verbatim.h b/remoting/codec/audio_encoder_verbatim.h
index 25cd54e017be5b92412754f1a174279d1a17667b..2605b6e9bd6d27b741093535aa9595810c91c8fd 100644
--- a/remoting/codec/audio_encoder_verbatim.h
+++ b/remoting/codec/audio_encoder_verbatim.h
@@ -14,11 +14,10 @@ class AudioPacket;
class AudioEncoderVerbatim : public AudioEncoder {
public:
AudioEncoderVerbatim();
- virtual ~AudioEncoderVerbatim();
+ ~AudioEncoderVerbatim() override;
// AudioEncoder implementation.
- virtual scoped_ptr<AudioPacket> Encode(
- scoped_ptr<AudioPacket> packet) override;
+ scoped_ptr<AudioPacket> Encode(scoped_ptr<AudioPacket> packet) override;
private:
DISALLOW_COPY_AND_ASSIGN(AudioEncoderVerbatim);
« no previous file with comments | « remoting/codec/audio_encoder_opus.h ('k') | remoting/codec/video_decoder_verbatim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698