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

Unified Diff: remoting/codec/audio_decoder_opus.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/client/token_fetcher_proxy.h ('k') | remoting/codec/audio_decoder_verbatim.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/audio_decoder_opus.h
diff --git a/remoting/codec/audio_decoder_opus.h b/remoting/codec/audio_decoder_opus.h
index 2c3a527868a4f1b426555c33ea98721cb801a8c4..dcf8776a577c4b429ae2f0fe260a96c493c47f81 100644
--- a/remoting/codec/audio_decoder_opus.h
+++ b/remoting/codec/audio_decoder_opus.h
@@ -18,11 +18,10 @@ class AudioPacket;
class AudioDecoderOpus : public AudioDecoder {
public:
AudioDecoderOpus();
- virtual ~AudioDecoderOpus();
+ ~AudioDecoderOpus() override;
// AudioDecoder interface.
- virtual scoped_ptr<AudioPacket> Decode(
- scoped_ptr<AudioPacket> packet) override;
+ scoped_ptr<AudioPacket> Decode(scoped_ptr<AudioPacket> packet) override;
private:
void InitDecoder();
« no previous file with comments | « remoting/client/token_fetcher_proxy.h ('k') | remoting/codec/audio_decoder_verbatim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698