| Index: remoting/base/decoder_row_based.h
|
| diff --git a/remoting/base/decoder_row_based.h b/remoting/base/decoder_row_based.h
|
| index e47ed8952bac3caa9e9668476a5dec3842242c31..7086c7b411ac758ae0aa1ce8426662147327350a 100644
|
| --- a/remoting/base/decoder_row_based.h
|
| +++ b/remoting/base/decoder_row_based.h
|
| @@ -19,12 +19,12 @@ class DecoderRowBased : public Decoder {
|
| static DecoderRowBased* CreateVerbatimDecoder();
|
|
|
| // Decoder implementation.
|
| - virtual bool IsReadyForData();
|
| - virtual void Initialize(scoped_refptr<media::VideoFrame> frame);
|
| - virtual DecodeResult DecodePacket(const VideoPacket* packet);
|
| - virtual void GetUpdatedRects(RectVector* rects);
|
| - virtual void Reset();
|
| - virtual VideoPacketFormat::Encoding Encoding();
|
| + virtual bool IsReadyForData() OVERRIDE;
|
| + virtual void Initialize(scoped_refptr<media::VideoFrame> frame) OVERRIDE;
|
| + virtual DecodeResult DecodePacket(const VideoPacket* packet) OVERRIDE;
|
| + virtual void GetUpdatedRects(RectVector* rects) OVERRIDE;
|
| + virtual void Reset() OVERRIDE;
|
| + virtual VideoPacketFormat::Encoding Encoding() OVERRIDE;
|
|
|
| private:
|
| enum State {
|
|
|