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

Side by Side Diff: chromecast/media/cma/base/decoder_buffer_adapter.h

Issue 630663003: replace OVERRIDE and FINAL with override and final in chromecast/ (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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_ 5 #ifndef CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_
6 #define CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_ 6 #define CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "chromecast/media/cma/base/decoder_buffer_base.h" 10 #include "chromecast/media/cma/base/decoder_buffer_base.h"
11 11
12 namespace media { 12 namespace media {
13 class DecoderBuffer; 13 class DecoderBuffer;
14 } 14 }
15 15
16 namespace chromecast { 16 namespace chromecast {
17 namespace media { 17 namespace media {
18 18
19 // DecoderBufferAdapter wraps a ::media::DecoderBuffer 19 // DecoderBufferAdapter wraps a ::media::DecoderBuffer
20 // into a DecoderBufferBase. 20 // into a DecoderBufferBase.
21 class DecoderBufferAdapter : public DecoderBufferBase { 21 class DecoderBufferAdapter : public DecoderBufferBase {
22 public: 22 public:
23 explicit DecoderBufferAdapter( 23 explicit DecoderBufferAdapter(
24 const scoped_refptr< ::media::DecoderBuffer>& buffer); 24 const scoped_refptr< ::media::DecoderBuffer>& buffer);
25 25
26 // DecoderBufferBase implementation. 26 // DecoderBufferBase implementation.
27 virtual base::TimeDelta timestamp() const OVERRIDE; 27 virtual base::TimeDelta timestamp() const override;
28 virtual const uint8* data() const OVERRIDE; 28 virtual const uint8* data() const override;
29 virtual uint8* writable_data() const OVERRIDE; 29 virtual uint8* writable_data() const override;
30 virtual int data_size() const OVERRIDE; 30 virtual int data_size() const override;
31 virtual const ::media::DecryptConfig* decrypt_config() const OVERRIDE; 31 virtual const ::media::DecryptConfig* decrypt_config() const override;
32 virtual bool end_of_stream() const OVERRIDE; 32 virtual bool end_of_stream() const override;
33 33
34 private: 34 private:
35 virtual ~DecoderBufferAdapter(); 35 virtual ~DecoderBufferAdapter();
36 36
37 scoped_refptr< ::media::DecoderBuffer> const buffer_; 37 scoped_refptr< ::media::DecoderBuffer> const buffer_;
38 38
39 DISALLOW_COPY_AND_ASSIGN(DecoderBufferAdapter); 39 DISALLOW_COPY_AND_ASSIGN(DecoderBufferAdapter);
40 }; 40 };
41 41
42 } // namespace media 42 } // namespace media
43 } // namespace chromecast 43 } // namespace chromecast
44 44
45 #endif // CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_ 45 #endif // CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_ADAPTER_H_
OLDNEW
« no previous file with comments | « chromecast/media/cma/base/buffering_frame_provider.h ('k') | chromecast/media/cma/filters/demuxer_stream_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698