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 "remoting/base/plugin_message_loop_proxy.h" | 5 #include "remoting/base/plugin_message_loop_proxy.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 | 8 |
9 namespace remoting { | 9 namespace remoting { |
10 | 10 |
11 PluginMessageLoopProxy::PluginMessageLoopProxy(Delegate* delegate) | 11 PluginMessageLoopProxy::PluginMessageLoopProxy(Delegate* delegate) |
12 : plugin_thread_id_(base::PlatformThread::CurrentId()), | 12 : plugin_thread_id_(base::PlatformThread::CurrentId()), |
13 delegate_(delegate) { | 13 delegate_(delegate) { |
14 } | 14 } |
15 | 15 |
16 PluginMessageLoopProxy::~PluginMessageLoopProxy() { | 16 PluginMessageLoopProxy::~PluginMessageLoopProxy() { |
17 } | 17 } |
18 | 18 |
19 void PluginMessageLoopProxy::Detach() { | 19 void PluginMessageLoopProxy::Detach() { |
20 base::AutoLock auto_lock(lock_); | 20 base::AutoLock auto_lock(lock_); |
21 if (delegate_) { | 21 if (delegate_) { |
22 DCHECK(BelongsToCurrentThread()); | 22 DCHECK(BelongsToCurrentThread()); |
23 delegate_ = NULL; | 23 delegate_ = NULL; |
24 } | 24 } |
25 } | 25 } |
26 | 26 |
27 bool PluginMessageLoopProxy::PostDelayedTask( | 27 bool PluginMessageLoopProxy::PostDelayedTask( |
28 const tracked_objects::Location& from_here, | 28 const tracked_objects::Location& from_here, |
29 const base::Closure& task, | 29 const base::Closure& task, |
| 30 int64 delay_ms) { |
| 31 return PostDelayedTask( |
| 32 from_here, task, base::TimeDelta::FromMilliseconds(delay_ms)); |
| 33 } |
| 34 |
| 35 bool PluginMessageLoopProxy::PostDelayedTask( |
| 36 const tracked_objects::Location& from_here, |
| 37 const base::Closure& task, |
30 base::TimeDelta delay) { | 38 base::TimeDelta delay) { |
31 base::AutoLock auto_lock(lock_); | 39 base::AutoLock auto_lock(lock_); |
32 if (!delegate_) | 40 if (!delegate_) |
33 return false; | 41 return false; |
34 | 42 |
35 base::Closure* springpad_closure = new base::Closure(base::Bind( | 43 base::Closure* springpad_closure = new base::Closure(base::Bind( |
36 &PluginMessageLoopProxy::RunClosureIf, this, task)); | 44 &PluginMessageLoopProxy::RunClosureIf, this, task)); |
37 return delegate_->RunOnPluginThread( | 45 return delegate_->RunOnPluginThread( |
38 delay, &PluginMessageLoopProxy::TaskSpringboard, springpad_closure); | 46 delay, &PluginMessageLoopProxy::TaskSpringboard, springpad_closure); |
39 } | 47 } |
40 | 48 |
41 bool PluginMessageLoopProxy::PostNonNestableDelayedTask( | 49 bool PluginMessageLoopProxy::PostNonNestableDelayedTask( |
42 const tracked_objects::Location& from_here, | 50 const tracked_objects::Location& from_here, |
43 const base::Closure& task, | 51 const base::Closure& task, |
| 52 int64 delay_ms) { |
| 53 // All tasks running on this message loop are non-nestable. |
| 54 return PostDelayedTask(from_here, task, delay_ms); |
| 55 } |
| 56 |
| 57 bool PluginMessageLoopProxy::PostNonNestableDelayedTask( |
| 58 const tracked_objects::Location& from_here, |
| 59 const base::Closure& task, |
44 base::TimeDelta delay) { | 60 base::TimeDelta delay) { |
45 // All tasks running on this message loop are non-nestable. | 61 // All tasks running on this message loop are non-nestable. |
46 return PostDelayedTask(from_here, task, delay); | 62 return PostDelayedTask(from_here, task, delay); |
47 } | 63 } |
48 | 64 |
49 bool PluginMessageLoopProxy::RunsTasksOnCurrentThread() const { | 65 bool PluginMessageLoopProxy::RunsTasksOnCurrentThread() const { |
50 // In pepper plugins ideally we should use pp::Core::IsMainThread, | 66 // In pepper plugins ideally we should use pp::Core::IsMainThread, |
51 // but it is problematic because we would need to keep reference to | 67 // but it is problematic because we would need to keep reference to |
52 // Core somewhere, e.g. make the delegate ref-counted. | 68 // Core somewhere, e.g. make the delegate ref-counted. |
53 return base::PlatformThread::CurrentId() == plugin_thread_id_; | 69 return base::PlatformThread::CurrentId() == plugin_thread_id_; |
54 } | 70 } |
55 | 71 |
56 // static | 72 // static |
57 void PluginMessageLoopProxy::TaskSpringboard(void* data) { | 73 void PluginMessageLoopProxy::TaskSpringboard(void* data) { |
58 base::Closure* task = reinterpret_cast<base::Closure*>(data); | 74 base::Closure* task = reinterpret_cast<base::Closure*>(data); |
59 task->Run(); | 75 task->Run(); |
60 delete task; | 76 delete task; |
61 } | 77 } |
62 | 78 |
63 void PluginMessageLoopProxy::RunClosureIf(const base::Closure& task) { | 79 void PluginMessageLoopProxy::RunClosureIf(const base::Closure& task) { |
64 // |delegate_| can be changed only from our thread, so it's safe to | 80 // |delegate_| can be changed only from our thread, so it's safe to |
65 // access it without acquiring |lock_|. | 81 // access it without acquiring |lock_|. |
66 if (delegate_) | 82 if (delegate_) |
67 task.Run(); | 83 task.Run(); |
68 } | 84 } |
69 | 85 |
70 } // namespace remoting | 86 } // namespace remoting |
OLD | NEW |