| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/base/video_frame.h" | 5 #include "media/base/video_frame.h" |
| 6 #include "remoting/base/codec_test.h" | 6 #include "remoting/base/codec_test.h" |
| 7 #include "remoting/base/decoder_vp8.h" | 7 #include "remoting/base/decoder_vp8.h" |
| 8 #include "remoting/base/encoder_vp8.h" | 8 #include "remoting/base/encoder_vp8.h" |
| 9 #include "remoting/client/mock_objects.h" | |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 10 |
| 12 | |
| 13 namespace remoting { | 11 namespace remoting { |
| 14 | 12 |
| 15 TEST(DecoderVp8Test, EncodeAndDecode) { | 13 TEST(DecoderVp8Test, EncodeAndDecode) { |
| 16 EncoderVp8 encoder; | 14 EncoderVp8 encoder; |
| 17 DecoderVp8 decoder; | 15 DecoderVp8 decoder; |
| 18 TestEncoderDecoder(&encoder, &decoder, false); | 16 TestEncoderDecoder(&encoder, &decoder, false); |
| 19 } | 17 } |
| 20 | 18 |
| 21 } // namespace remoting | 19 } // namespace remoting |
| OLD | NEW |