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

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: Resolve comments. 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
Index: media/base/pipeline_unittest.cc
diff --git a/media/base/pipeline_unittest.cc b/media/base/pipeline_unittest.cc
index a4a0588e1fdc2a7ead348f905ed3a40bd6f0bb1e..5ad3bab130c848ad61b6d5bb7e6ba118000d82da 100644
--- a/media/base/pipeline_unittest.cc
+++ b/media/base/pipeline_unittest.cc
@@ -75,7 +75,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

Powered by Google App Engine
This is Rietveld 408576698