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

Unified Diff: third_party/WebKit/Source/core/dom/Microtask.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, 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/Microtask.cpp
diff --git a/third_party/WebKit/Source/core/dom/Microtask.cpp b/third_party/WebKit/Source/core/dom/Microtask.cpp
index 488c577f79f8dac4d4c285c74b6d0889169aa8b3..7c3ec6ed7540cddc51fed0809c5873375a2df5be 100644
--- a/third_party/WebKit/Source/core/dom/Microtask.cpp
+++ b/third_party/WebKit/Source/core/dom/Microtask.cpp
@@ -61,9 +61,9 @@ void Microtask::enqueueMicrotask(PassOwnPtr<WebTaskRunner::Task> callback)
isolate->EnqueueMicrotask(&microtaskFunctionCallback, callback.leakPtr());
}
-void Microtask::enqueueMicrotask(PassOwnPtr<Closure> callback)
+void Microtask::enqueueMicrotask(PassOwnPtr<SameThreadClosure> callback)
{
- enqueueMicrotask(adoptPtr(new Task(callback)));
+ enqueueMicrotask(adoptPtr(new SameThreadTask(callback)));
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/Microtask.h ('k') | third_party/WebKit/Source/core/html/parser/HTMLParserThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698