| Index: media/filters/decrypting_video_decoder.h
|
| diff --git a/media/filters/decrypting_video_decoder.h b/media/filters/decrypting_video_decoder.h
|
| index c301e55ef5ee8b6e351c7a62cee767adf7afebdb..892c429fdf58837dda88223e5b60f61e0bebd6f1 100644
|
| --- a/media/filters/decrypting_video_decoder.h
|
| +++ b/media/filters/decrypting_video_decoder.h
|
| @@ -32,14 +32,14 @@ class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder {
|
| virtual ~DecryptingVideoDecoder();
|
|
|
| // VideoDecoder implementation.
|
| - virtual std::string GetDisplayName() const OVERRIDE;
|
| + virtual std::string GetDisplayName() const override;
|
| virtual void Initialize(const VideoDecoderConfig& config,
|
| bool low_delay,
|
| const PipelineStatusCB& status_cb,
|
| - const OutputCB& output_cb) OVERRIDE;
|
| + const OutputCB& output_cb) override;
|
| virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
|
| - const DecodeCB& decode_cb) OVERRIDE;
|
| - virtual void Reset(const base::Closure& closure) OVERRIDE;
|
| + const DecodeCB& decode_cb) override;
|
| + virtual void Reset(const base::Closure& closure) override;
|
|
|
| private:
|
| // For a detailed state diagram please see this link: http://goo.gl/8jAok
|
|
|