| Index: remoting/codec/video_encoder_vpx_unittest.cc
|
| diff --git a/remoting/codec/video_encoder_vpx_unittest.cc b/remoting/codec/video_encoder_vpx_unittest.cc
|
| index 185225d10fbc49de07e27812ea4f77fb942a0986..e862423fb74380ef85718b20716fd5e1bd2d29b8 100644
|
| --- a/remoting/codec/video_encoder_vpx_unittest.cc
|
| +++ b/remoting/codec/video_encoder_vpx_unittest.cc
|
| @@ -21,14 +21,14 @@ const int kIntMax = std::numeric_limits<int>::max();
|
|
|
| namespace remoting {
|
|
|
| -TEST(VideoEncoderVpxTest, TestVideoEncoder) {
|
| +TEST(VideoEncoderVp8Test, TestVideoEncoder) {
|
| scoped_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP8());
|
| TestVideoEncoder(encoder.get(), false);
|
| }
|
|
|
| // Test that calling Encode with a differently-sized media::ScreenCaptureData
|
| // does not leak memory.
|
| -TEST(VideoEncoderVpxTest, TestSizeChangeNoLeak) {
|
| +TEST(VideoEncoderVp8Test, TestSizeChangeNoLeak) {
|
| int height = 1000;
|
| int width = 1000;
|
|
|
| @@ -49,7 +49,7 @@ TEST(VideoEncoderVpxTest, TestSizeChangeNoLeak) {
|
|
|
| // Test that the DPI information is correctly propagated from the
|
| // media::ScreenCaptureData to the VideoPacket.
|
| -TEST(VideoEncoderVpxTest, TestDpiPropagation) {
|
| +TEST(VideoEncoderVp8Test, TestDpiPropagation) {
|
| int height = 32;
|
| int width = 32;
|
|
|
|
|