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(µtaskFunctionCallback, 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 |