| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef BASE_MESSAGE_LOOP_PROXY_IMPL_H_ | 5 #ifndef BASE_MESSAGE_LOOP_PROXY_IMPL_H_ |
| 6 #define BASE_MESSAGE_LOOP_PROXY_IMPL_H_ | 6 #define BASE_MESSAGE_LOOP_PROXY_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/lock.h" | 9 #include "base/lock.h" |
| 10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
| 11 #include "base/message_loop_proxy.h" | 11 #include "base/message_loop_proxy.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 | 14 |
| 15 // A stock implementation of MessageLoopProxy that takes in a MessageLoop | 15 // A stock implementation of MessageLoopProxy that takes in a MessageLoop |
| 16 // and keeps track of its lifetime using the MessageLoop DestructionObserver. | 16 // and keeps track of its lifetime using the MessageLoop DestructionObserver. |
| 17 // For now a MessageLoopProxyImpl can only be created for the current thread. | 17 // For now a MessageLoopProxyImpl can only be created for the current thread. |
| 18 class MessageLoopProxyImpl : public MessageLoopProxy, | 18 class MessageLoopProxyImpl : public MessageLoopProxy, |
| 19 public MessageLoop::DestructionObserver { | 19 public MessageLoop::DestructionObserver { |
| 20 public: | 20 public: |
| 21 ~MessageLoopProxyImpl(); | 21 virtual ~MessageLoopProxyImpl(); |
| 22 | 22 |
| 23 // MessageLoopProxy implementation | 23 // MessageLoopProxy implementation |
| 24 virtual bool PostTask(const tracked_objects::Location& from_here, | 24 virtual bool PostTask(const tracked_objects::Location& from_here, |
| 25 Task* task); | 25 Task* task); |
| 26 virtual bool PostDelayedTask(const tracked_objects::Location& from_here, | 26 virtual bool PostDelayedTask(const tracked_objects::Location& from_here, |
| 27 Task* task, int64 delay_ms); | 27 Task* task, int64 delay_ms); |
| 28 virtual bool PostNonNestableTask(const tracked_objects::Location& from_here, | 28 virtual bool PostNonNestableTask(const tracked_objects::Location& from_here, |
| 29 Task* task); | 29 Task* task); |
| 30 virtual bool PostNonNestableDelayedTask( | 30 virtual bool PostNonNestableDelayedTask( |
| 31 const tracked_objects::Location& from_here, | 31 const tracked_objects::Location& from_here, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 53 mutable Lock message_loop_lock_; | 53 mutable Lock message_loop_lock_; |
| 54 MessageLoop* target_message_loop_; | 54 MessageLoop* target_message_loop_; |
| 55 | 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(MessageLoopProxyImpl); | 56 DISALLOW_COPY_AND_ASSIGN(MessageLoopProxyImpl); |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace base | 59 } // namespace base |
| 60 | 60 |
| 61 #endif // BASE_MESSAGE_LOOP_PROXY_IMPL_H_ | 61 #endif // BASE_MESSAGE_LOOP_PROXY_IMPL_H_ |
| 62 | 62 |
| OLD | NEW |