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

Side by Side Diff: remoting/codec/audio_decoder_verbatim.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 unified diff | Download patch
« no previous file with comments | « remoting/codec/audio_decoder_opus.h ('k') | remoting/codec/audio_encoder_opus.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_ 5 #ifndef REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_
6 #define REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_ 6 #define REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_
7 7
8 #include "remoting/codec/audio_decoder.h" 8 #include "remoting/codec/audio_decoder.h"
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 11
12 namespace remoting { 12 namespace remoting {
13 13
14 class AudioPacket; 14 class AudioPacket;
15 15
16 // The decoder for raw audio streams. 16 // The decoder for raw audio streams.
17 class AudioDecoderVerbatim : public AudioDecoder { 17 class AudioDecoderVerbatim : public AudioDecoder {
18 public: 18 public:
19 AudioDecoderVerbatim(); 19 AudioDecoderVerbatim();
20 virtual ~AudioDecoderVerbatim(); 20 virtual ~AudioDecoderVerbatim();
21 21
22 virtual scoped_ptr<AudioPacket> Decode( 22 virtual scoped_ptr<AudioPacket> Decode(
23 scoped_ptr<AudioPacket> packet) OVERRIDE; 23 scoped_ptr<AudioPacket> packet) override;
24 24
25 private: 25 private:
26 DISALLOW_COPY_AND_ASSIGN(AudioDecoderVerbatim); 26 DISALLOW_COPY_AND_ASSIGN(AudioDecoderVerbatim);
27 }; 27 };
28 28
29 } // namespace remoting 29 } // namespace remoting
30 30
31 #endif // REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_ 31 #endif // REMOTING_CODEC_AUDIO_DECODER_VERBATIM_H_
OLDNEW
« no previous file with comments | « remoting/codec/audio_decoder_opus.h ('k') | remoting/codec/audio_encoder_opus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698