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

Side by Side Diff: media/base/message_loop_factory_impl.cc

Issue 6171009: Remove MessageLoop methods from Filter interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698