Chromium Code Reviews| Index: media/filters/ffmpeg_glue_unittest.cc |
| =================================================================== |
| --- media/filters/ffmpeg_glue_unittest.cc (revision 75179) |
| +++ media/filters/ffmpeg_glue_unittest.cc (working copy) |
| @@ -36,12 +36,9 @@ |
| class FFmpegGlueTest : public ::testing::Test { |
| public: |
| - FFmpegGlueTest() { |
| - } |
| + FFmpegGlueTest() {} |
| virtual void SetUp() { |
| - MockFFmpeg::set(&mock_ffmpeg_); |
| - |
| // Singleton should initialize FFmpeg. |
| CHECK(FFmpegGlue::GetInstance()); |
| @@ -50,9 +47,7 @@ |
| CHECK(protocol_); |
| } |
| - virtual void TearDown() { |
| - MockFFmpeg::set(NULL); |
| - } |
| + virtual void TearDown() {} |
|
acolwell GONE FROM CHROMIUM
2011/02/18 00:41:55
Can we remove this?
scherkus (not reviewing)
2011/02/18 20:48:12
Sure can!
|
| // Helper to open a URLContext pointing to the given mocked protocol. |
| // Callers are expected to close the context at the end of their test. |