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

Unified Diff: media/base/message_loop_factory_impl.cc

Issue 9597016: Fold media::MessageLoopFactoryImpl into media::MessageLoopFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 8 years, 10 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/message_loop_factory_impl.h ('k') | media/filters/pipeline_integration_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/message_loop_factory_impl.cc
diff --git a/media/base/message_loop_factory_impl.cc b/media/base/message_loop_factory_impl.cc
deleted file mode 100644
index 6cf12da3f0b406cec0165783b27811a93980cda7..0000000000000000000000000000000000000000
--- a/media/base/message_loop_factory_impl.cc
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "media/base/message_loop_factory_impl.h"
-
-namespace media {
-
-MessageLoopFactoryImpl::MessageLoopFactoryImpl() {}
-
-MessageLoopFactoryImpl::~MessageLoopFactoryImpl() {
- base::AutoLock auto_lock(lock_);
-
- for (ThreadMap::iterator iter = thread_map_.begin();
- iter != thread_map_.end();
- ++iter) {
- base::Thread* thread = (*iter).second;
-
- if (thread) {
- thread->Stop();
- delete thread;
- }
- }
- thread_map_.clear();
-}
-
-// MessageLoopFactory methods.
-MessageLoop* MessageLoopFactoryImpl::GetMessageLoop(const std::string& name) {
- if (name.empty()) {
- return NULL;
- }
-
- base::AutoLock auto_lock(lock_);
-
- ThreadMap::iterator it = thread_map_.find(name);
- if (it != thread_map_.end())
- return (*it).second->message_loop();
-
- scoped_ptr<base::Thread> thread(new base::Thread(name.c_str()));
-
- if (thread->Start()) {
- MessageLoop* message_loop = thread->message_loop();
- thread_map_[name] = thread.release();
- return message_loop;
- }
-
- LOG(ERROR) << "Failed to start '" << name << "' thread!";
- return NULL;
-}
-
-scoped_refptr<base::MessageLoopProxy>
-MessageLoopFactoryImpl::GetMessageLoopProxy(const std::string& name) {
- if (name.empty()) {
- return NULL;
- }
-
- base::AutoLock auto_lock(lock_);
-
- ThreadMap::iterator it = thread_map_.find(name);
- if (it != thread_map_.end())
- return (*it).second->message_loop_proxy();
-
- scoped_ptr<base::Thread> thread(new base::Thread(name.c_str()));
-
- if (thread->Start()) {
- scoped_refptr<base::MessageLoopProxy> message_loop_proxy =
- thread->message_loop_proxy();
- thread_map_[name] = thread.release();
- return message_loop_proxy;
- }
-
- LOG(ERROR) << "Failed to start '" << name << "' thread!";
- return NULL;
-}
-
-} // namespace media
« no previous file with comments | « media/base/message_loop_factory_impl.h ('k') | media/filters/pipeline_integration_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698