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

Unified Diff: remoting/codec/video_encoder_vp8.h

Issue 10870071: Renamed Encoder -> VideoEncoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments 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
« no previous file with comments | « remoting/codec/video_encoder_row_based_unittest.cc ('k') | remoting/codec/video_encoder_vp8.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder_vp8.h
diff --git a/remoting/codec/video_encoder_vp8.h b/remoting/codec/video_encoder_vp8.h
index 05aeea1e8b5554d4f402cd6c86797b68d99aa6c2..83559e11f36948d9b2ab3c6ed2f052e677c3d8ee 100644
--- a/remoting/codec/video_encoder_vp8.h
+++ b/remoting/codec/video_encoder_vp8.h
@@ -15,10 +15,10 @@ typedef struct vpx_image vpx_image_t;
namespace remoting {
// A class that uses VP8 to perform encoding.
-class EncoderVp8 : public Encoder {
+class VideoEncoderVp8 : public VideoEncoder {
public:
- EncoderVp8();
- virtual ~EncoderVp8();
+ VideoEncoderVp8();
+ virtual ~VideoEncoderVp8();
virtual void Encode(
scoped_refptr<CaptureData> capture_data,
@@ -26,7 +26,7 @@ class EncoderVp8 : public Encoder {
const DataAvailableCallback& data_available_callback) OVERRIDE;
private:
- FRIEND_TEST_ALL_PREFIXES(EncoderVp8Test, AlignAndClipRect);
+ FRIEND_TEST_ALL_PREFIXES(VideoEncoderVp8Test, AlignAndClipRect);
// Initialize the encoder. Returns true if successful.
bool Init(const SkISize& size);
@@ -56,7 +56,7 @@ class EncoderVp8 : public Encoder {
// Buffer for storing the yuv image.
scoped_array<uint8> yuv_image_;
- DISALLOW_COPY_AND_ASSIGN(EncoderVp8);
+ DISALLOW_COPY_AND_ASSIGN(VideoEncoderVp8);
};
} // namespace remoting
« no previous file with comments | « remoting/codec/video_encoder_row_based_unittest.cc ('k') | remoting/codec/video_encoder_vp8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698