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

Unified Diff: media/base/pipeline_unittest.cc

Issue 10855051: Use enum instead of string in MessageLoopFactory::GetMessageLoop* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 4 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
« no previous file with comments | « media/base/pipeline.cc ('k') | media/filters/ffmpeg_audio_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline_unittest.cc
diff --git a/media/base/pipeline_unittest.cc b/media/base/pipeline_unittest.cc
index 5b502050611a1a4defc721b77f22c4b929f55166..c6d9c35edb815076027fcc99beede1fc4196c244 100644
--- a/media/base/pipeline_unittest.cc
+++ b/media/base/pipeline_unittest.cc
@@ -92,7 +92,8 @@ class CallbackHelper {
class PipelineTest : public ::testing::Test {
public:
PipelineTest()
- : pipeline_(new Pipeline(&message_loop_, new MediaLog())) {
+ : pipeline_(new Pipeline(message_loop_.message_loop_proxy(),
+ new MediaLog())) {
mocks_.reset(new MockFilterCollection());
// InitializeDemuxer() adds overriding expectations for expected non-NULL
« no previous file with comments | « media/base/pipeline.cc ('k') | media/filters/ffmpeg_audio_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698