OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "media/base/message_loop_factory_impl.h" |
| 6 |
| 7 namespace media { |
| 8 |
| 9 MessageLoopFactoryImpl::MessageLoopFactoryImpl() { |
| 10 } |
| 11 |
| 12 MessageLoopFactoryImpl::~MessageLoopFactoryImpl() { |
| 13 AutoLock auto_lock(lock_); |
| 14 |
| 15 for (ThreadMap::iterator iter = thread_map_.begin(); |
| 16 iter != thread_map_.end(); |
| 17 ++iter) { |
| 18 base::Thread* thread = (*iter).second; |
| 19 |
| 20 if (thread) { |
| 21 thread->Stop(); |
| 22 delete thread; |
| 23 } |
| 24 } |
| 25 thread_map_.clear(); |
| 26 } |
| 27 |
| 28 // MessageLoopFactory methods. |
| 29 MessageLoop* MessageLoopFactoryImpl::GetMessageLoop(const char* name) { |
| 30 if (!name || !*name) { |
| 31 return NULL; |
| 32 } |
| 33 |
| 34 MessageLoop* message_loop = NULL; |
| 35 AutoLock auto_lock(lock_); |
| 36 |
| 37 base::Thread* thread = thread_map_[std::string(name)]; |
| 38 |
| 39 if (!thread) { |
| 40 thread = new base::Thread(name); |
| 41 |
| 42 if (thread->Start()) { |
| 43 thread_map_[name] = thread; |
| 44 message_loop = thread->message_loop(); |
| 45 } else { |
| 46 delete thread; |
| 47 } |
| 48 } else { |
| 49 message_loop = thread->message_loop(); |
| 50 } |
| 51 |
| 52 return message_loop; |
| 53 } |
| 54 |
| 55 } // namespace media |
OLD | NEW |