| Index: chromecast/media/cma/ipc_streamer/coded_frame_provider_host.h
|
| diff --git a/chromecast/media/cma/ipc_streamer/coded_frame_provider_host.h b/chromecast/media/cma/ipc_streamer/coded_frame_provider_host.h
|
| index 9dc9471bc5b62fcef612700a9d2e9d9040336a3c..738cc8bd7691524dda39e09f197f49ff37185426 100644
|
| --- a/chromecast/media/cma/ipc_streamer/coded_frame_provider_host.h
|
| +++ b/chromecast/media/cma/ipc_streamer/coded_frame_provider_host.h
|
| @@ -25,11 +25,11 @@ class CodedFrameProviderHost : public CodedFrameProvider {
|
| // during the whole lifetime of this object.
|
| explicit CodedFrameProviderHost(
|
| scoped_ptr<MediaMessageFifo> media_message_fifo);
|
| - virtual ~CodedFrameProviderHost();
|
| + ~CodedFrameProviderHost() override;
|
|
|
| // CodedFrameProvider implementation.
|
| - virtual void Read(const ReadCB& read_cb) override;
|
| - virtual void Flush(const base::Closure& flush_cb) override;
|
| + void Read(const ReadCB& read_cb) override;
|
| + void Flush(const base::Closure& flush_cb) override;
|
|
|
| // Invoked when some data has been written into the fifo.
|
| void OnFifoWriteEvent();
|
|
|