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

Unified Diff: media/base/pipeline_impl_unittest.cc

Issue 7193001: Move rtc_video_decoder* from media/filter/ to content/renderer/media/. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 6 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
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.

Powered by Google App Engine
This is Rietveld 408576698