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

Unified Diff: remoting/codec/video_decoder_vp8.h

Issue 10873047: Renamed Decoder -> VideoDecoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: remoting/codec/video_decoder_vp8.h
diff --git a/remoting/codec/video_decoder_vp8.h b/remoting/codec/video_decoder_vp8.h
index 2095fbb9ab87cf2e3520606933cfe55d848b880b..53a720ba9b6711448e78cb52fa72b324012e7c3d 100644
--- a/remoting/codec/video_decoder_vp8.h
+++ b/remoting/codec/video_decoder_vp8.h
@@ -13,12 +13,12 @@ typedef struct vpx_image vpx_image_t;
namespace remoting {
-class DecoderVp8 : public Decoder {
+class VideoDecoderVp8 : public VideoDecoder {
public:
- DecoderVp8();
- virtual ~DecoderVp8();
+ VideoDecoderVp8();
+ virtual ~VideoDecoderVp8();
- // Decoder implementations.
+ // VideoDecoder implementations.
virtual void Initialize(const SkISize& screen_size) OVERRIDE;
virtual DecodeResult DecodePacket(const VideoPacket* packet) OVERRIDE;
virtual bool IsReadyForData() OVERRIDE;
@@ -52,7 +52,7 @@ class DecoderVp8 : public Decoder {
// Output dimensions.
SkISize screen_size_;
- DISALLOW_COPY_AND_ASSIGN(DecoderVp8);
+ DISALLOW_COPY_AND_ASSIGN(VideoDecoderVp8);
};
} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698