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

Unified Diff: third_party/WebKit/Source/core/dom/ExecutionContextTask.h

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, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/ExecutionContextTask.h
diff --git a/third_party/WebKit/Source/core/dom/ExecutionContextTask.h b/third_party/WebKit/Source/core/dom/ExecutionContextTask.h
index 1d7f4ec82f52333391b6b8ad736c5e233fa8389b..67b50b346efd82d3fb58f4bf858a5ea99814bc13 100644
--- a/third_party/WebKit/Source/core/dom/ExecutionContextTask.h
+++ b/third_party/WebKit/Source/core/dom/ExecutionContextTask.h
@@ -50,55 +50,59 @@ public:
namespace internal {
-template<typename T>
+template<typename T, WTF::FunctionThreadAffinity threadAffinity>
class CallClosureTaskBase : public ExecutionContextTask {
protected:
- CallClosureTaskBase(PassOwnPtr<Function<T>> closure, bool isSameThread)
+ explicit CallClosureTaskBase(PassOwnPtr<Function<T, threadAffinity>> closure)
: m_closure(std::move(closure))
-#if ENABLE(ASSERT)
- , m_isSameThread(isSameThread)
- , m_createdThread(currentThread())
-#endif
{
}
- void checkThread()
+ OwnPtr<Function<T, threadAffinity>> m_closure;
+};
+
+template<WTF::FunctionThreadAffinity threadAffinity>
+class CallClosureTask final : public CallClosureTaskBase<void(), threadAffinity> {
+public:
+ // Do not use |create| other than in createCrossThreadTask and
+ // createSameThreadTask.
+ // See http://crbug.com/390851
+ static PassOwnPtr<CallClosureTask<threadAffinity>> create(PassOwnPtr<Function<void(), threadAffinity>> closure)
{
-#if ENABLE(ASSERT)
- if (m_isSameThread) {
- RELEASE_ASSERT(m_createdThread == currentThread());
- }
-#endif
+ return adoptPtr(new CallClosureTask<threadAffinity>(std::move(closure)));
}
- OwnPtr<Function<T>> m_closure;
+ void performTask(ExecutionContext*) override
+ {
+ (*this->m_closure)();
+ }
private:
-#if ENABLE(ASSERT)
- bool m_isSameThread;
- ThreadIdentifier m_createdThread;
-#endif
+ explicit CallClosureTask(PassOwnPtr<Function<void(), threadAffinity>> closure)
+ : CallClosureTaskBase<void(), threadAffinity>(std::move(closure))
+ {
+ }
};
-class CallClosureTask final : public CallClosureTaskBase<void()> {
+template<WTF::FunctionThreadAffinity threadAffinity>
+class CallClosureWithExecutionContextTask final : public CallClosureTaskBase<void(ExecutionContext*), threadAffinity> {
public:
// Do not use |create| other than in createCrossThreadTask and
// createSameThreadTask.
// See http://crbug.com/390851
- static PassOwnPtr<CallClosureTask> create(PassOwnPtr<Closure> closure, bool isSameThread = false)
+ static PassOwnPtr<CallClosureWithExecutionContextTask> create(PassOwnPtr<Function<void(ExecutionContext*), threadAffinity>> closure)
{
- return adoptPtr(new CallClosureTask(std::move(closure), isSameThread));
+ return adoptPtr(new CallClosureWithExecutionContextTask(std::move(closure)));
}
- void performTask(ExecutionContext*) override
+ void performTask(ExecutionContext* context) override
{
- checkThread();
- (*m_closure)();
+ (*this->m_closure)(context);
}
private:
- CallClosureTask(PassOwnPtr<Closure> closure, bool isSameThread)
- : CallClosureTaskBase<void()>(std::move(closure), isSameThread)
+ explicit CallClosureWithExecutionContextTask(PassOwnPtr<Function<void(ExecutionContext*), threadAffinity>> closure)
+ : CallClosureTaskBase<void(ExecutionContext*), threadAffinity>(std::move(closure))
{
}
};
@@ -114,7 +118,7 @@ template<typename FunctionType, typename... P>
PassOwnPtr<ExecutionContextTask> createSameThreadTask(
FunctionType function, const P&... parameters)
{
- return internal::CallClosureTask::create(bind(function, parameters...), true);
+ return internal::CallClosureTask<WTF::SameThreadAffinity>::create(bind(function, parameters...));
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/CrossThreadTask.h ('k') | third_party/WebKit/Source/core/dom/Microtask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698