Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(662)

Side by Side Diff: third_party/WebKit/Source/platform/scheduler/CancellableTaskFactory.cpp

Issue 1549143002: Add thread affinity and ASSERT() for same-thread restriction to WTF::Function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@TRV_ThreadSafeBindByVariadicTemplate
Patch Set: Rebase. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698