OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "platform/scheduler/CancellableTaskFactory.h" | 5 #include "platform/scheduler/CancellableTaskFactory.h" |
6 | 6 |
7 #include "public/platform/Platform.h" | 7 #include "public/platform/Platform.h" |
8 | 8 |
9 namespace blink { | 9 namespace blink { |
10 | 10 |
11 void CancellableTaskFactory::cancel() | 11 void CancellableTaskFactory::cancel() |
12 { | 12 { |
13 m_weakPtrFactory.revokeAll(); | 13 m_weakPtrFactory.revokeAll(); |
14 } | 14 } |
15 | 15 |
16 WebTaskRunner::Task* CancellableTaskFactory::cancelAndCreate() | 16 WebTaskRunner::Task* CancellableTaskFactory::cancelAndCreate() |
17 { | 17 { |
18 cancel(); | 18 cancel(); |
19 return new CancellableTask(m_weakPtrFactory.createWeakPtr()); | 19 return new CancellableTask(m_weakPtrFactory.createWeakPtr()); |
20 } | 20 } |
21 | 21 |
22 void CancellableTaskFactory::CancellableTask::run() | 22 void CancellableTaskFactory::CancellableTask::run() |
23 { | 23 { |
24 if (CancellableTaskFactory* taskFactory = m_weakPtr.get()) { | 24 if (CancellableTaskFactory* taskFactory = m_weakPtr.get()) { |
25 Closure* closure = taskFactory->m_closure.get(); | 25 SameThreadClosure* closure = taskFactory->m_closure.get(); |
26 taskFactory->m_weakPtrFactory.revokeAll(); | 26 taskFactory->m_weakPtrFactory.revokeAll(); |
27 (*closure)(); | 27 (*closure)(); |
28 } | 28 } |
29 } | 29 } |
30 | 30 |
31 } // namespace blink | 31 } // namespace blink |
OLD | NEW |