Chromium Code Reviews| Index: media/base/pipeline_impl_unittest.cc |
| =================================================================== |
| --- media/base/pipeline_impl_unittest.cc (revision 90373) |
| +++ media/base/pipeline_impl_unittest.cc (working copy) |
| @@ -34,7 +34,8 @@ |
| static const int kBufferedBytes = 1024; |
| // Test url for raw video pipeline. |
| -static const std::string kUrlMedia = "media://raw_video_stream"; |
| +static const std::string kUrlMedia = std::string(kRawVideoScheme) + |
|
scherkus (not reviewing)
2011/06/24 21:33:39
this really shouldn't be a std::string (we only us
Ronghua
2011/06/27 22:34:51
Done.
|
| + std::string("://raw_video_stream"); |
| // Used for setting expectations on pipeline callbacks. Using a StrictMock |
| // also lets us test for missing callbacks. |