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