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

Unified Diff: remoting/codec/video_decoder.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.h
diff --git a/remoting/codec/video_decoder.h b/remoting/codec/video_decoder.h
index 70e5723be456123f1b15479d32e9381ec6fe8eea..f1eb650d10c7341ff2d5e4e5ac62a25201448e6f 100644
--- a/remoting/codec/video_decoder.h
+++ b/remoting/codec/video_decoder.h
@@ -17,7 +17,7 @@ namespace remoting {
// outputs frames of data.
//
// TODO(ajwong): Beef up this documentation once the API stablizes.
-class Decoder {
+class VideoDecoder {
public:
// DecodeResult is returned from DecodePacket() and indicates current state
// of the decoder. DECODE_DONE means that last packet for the frame was
@@ -30,8 +30,8 @@ class Decoder {
DECODE_DONE,
};
- Decoder() {}
- virtual ~Decoder() {}
+ VideoDecoder() {}
+ virtual ~VideoDecoder() {}
// Initializes the decoder and sets the output dimensions.
// |screen size| must not be empty.

Powered by Google App Engine
This is Rietveld 408576698