| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/message_loop/message_loop_proxy_impl.h" | 5 #include "base/message_loop/message_loop_task_runner.h" |
| 6 | 6 |
| 7 #include "base/location.h" | 7 #include "base/location.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/message_loop/incoming_task_queue.h" | 9 #include "base/message_loop/incoming_task_queue.h" |
| 10 #include "base/message_loop/message_loop.h" | |
| 11 | 10 |
| 12 namespace base { | 11 namespace base { |
| 13 namespace internal { | 12 namespace internal { |
| 14 | 13 |
| 15 MessageLoopProxyImpl::MessageLoopProxyImpl( | 14 MessageLoopTaskRunner::MessageLoopTaskRunner( |
| 16 scoped_refptr<IncomingTaskQueue> incoming_queue) | 15 scoped_refptr<IncomingTaskQueue> incoming_queue) |
| 17 : incoming_queue_(incoming_queue), | 16 : incoming_queue_(incoming_queue), valid_thread_id_(kInvalidThreadId) { |
| 18 valid_thread_id_(kInvalidThreadId) { | |
| 19 } | 17 } |
| 20 | 18 |
| 21 void MessageLoopProxyImpl::BindToCurrentThread() { | 19 void MessageLoopTaskRunner::BindToCurrentThread() { |
| 22 AutoLock lock(valid_thread_id_lock_); | 20 AutoLock lock(valid_thread_id_lock_); |
| 23 DCHECK_EQ(kInvalidThreadId, valid_thread_id_); | 21 DCHECK_EQ(kInvalidThreadId, valid_thread_id_); |
| 24 valid_thread_id_ = PlatformThread::CurrentId(); | 22 valid_thread_id_ = PlatformThread::CurrentId(); |
| 25 } | 23 } |
| 26 | 24 |
| 27 bool MessageLoopProxyImpl::PostDelayedTask( | 25 bool MessageLoopTaskRunner::PostDelayedTask( |
| 28 const tracked_objects::Location& from_here, | 26 const tracked_objects::Location& from_here, |
| 29 const base::Closure& task, | 27 const base::Closure& task, |
| 30 base::TimeDelta delay) { | 28 base::TimeDelta delay) { |
| 31 DCHECK(!task.is_null()) << from_here.ToString(); | 29 DCHECK(!task.is_null()) << from_here.ToString(); |
| 32 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true); | 30 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true); |
| 33 } | 31 } |
| 34 | 32 |
| 35 bool MessageLoopProxyImpl::PostNonNestableDelayedTask( | 33 bool MessageLoopTaskRunner::PostNonNestableDelayedTask( |
| 36 const tracked_objects::Location& from_here, | 34 const tracked_objects::Location& from_here, |
| 37 const base::Closure& task, | 35 const base::Closure& task, |
| 38 base::TimeDelta delay) { | 36 base::TimeDelta delay) { |
| 39 DCHECK(!task.is_null()) << from_here.ToString(); | 37 DCHECK(!task.is_null()) << from_here.ToString(); |
| 40 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false); | 38 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false); |
| 41 } | 39 } |
| 42 | 40 |
| 43 bool MessageLoopProxyImpl::RunsTasksOnCurrentThread() const { | 41 bool MessageLoopTaskRunner::RunsTasksOnCurrentThread() const { |
| 44 AutoLock lock(valid_thread_id_lock_); | 42 AutoLock lock(valid_thread_id_lock_); |
| 45 return valid_thread_id_ == PlatformThread::CurrentId(); | 43 return valid_thread_id_ == PlatformThread::CurrentId(); |
| 46 } | 44 } |
| 47 | 45 |
| 48 MessageLoopProxyImpl::~MessageLoopProxyImpl() { | 46 MessageLoopTaskRunner::~MessageLoopTaskRunner() { |
| 49 } | 47 } |
| 50 | 48 |
| 51 } // namespace internal | 49 } // namespace internal |
| 52 | 50 |
| 53 scoped_refptr<MessageLoopProxy> | |
| 54 MessageLoopProxy::current() { | |
| 55 MessageLoop* cur_loop = MessageLoop::current(); | |
| 56 if (!cur_loop) | |
| 57 return NULL; | |
| 58 return cur_loop->message_loop_proxy(); | |
| 59 } | |
| 60 | |
| 61 } // namespace base | 51 } // namespace base |
| OLD | NEW |