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

Unified Diff: remoting/codec/video_decoder_vp8_unittest.cc

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/codec_test.cc ('k') | remoting/codec/video_encode_decode_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_decoder_vp8_unittest.cc
diff --git a/remoting/codec/video_decoder_vp8_unittest.cc b/remoting/codec/video_decoder_vp8_unittest.cc
index 2553dfa5f13c77dcf601d106c6cacd3ee56316da..bf4d6262e632d6bb0c113911d0539d55d69078cc 100644
--- a/remoting/codec/video_decoder_vp8_unittest.cc
+++ b/remoting/codec/video_decoder_vp8_unittest.cc
@@ -13,21 +13,21 @@ namespace remoting {
class VideoDecoderVp8Test : public testing::Test {
protected:
- EncoderVp8 encoder_;
+ VideoEncoderVp8 encoder_;
VideoDecoderVp8 decoder_;
void TestGradient(int screen_width, int screen_height,
int view_width, int view_height,
double max_error_limit, double mean_error_limit) {
- TestEncoderDecoderGradient(&encoder_, &decoder_,
- SkISize::Make(screen_width, screen_height),
- SkISize::Make(view_width, view_height),
- max_error_limit, mean_error_limit);
+ TestVideoEncoderDecoderGradient(&encoder_, &decoder_,
+ SkISize::Make(screen_width, screen_height),
+ SkISize::Make(view_width, view_height),
+ max_error_limit, mean_error_limit);
}
};
-TEST_F(VideoDecoderVp8Test, EncodeAndDecode) {
- TestEncoderDecoder(&encoder_, &decoder_, false);
+TEST_F(VideoDecoderVp8Test, VideoEncodeAndDecode) {
+ TestVideoEncoderDecoder(&encoder_, &decoder_, false);
}
// Check that encoding and decoding a particular frame doesn't change the
« no previous file with comments | « remoting/codec/codec_test.cc ('k') | remoting/codec/video_encode_decode_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698