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 933dbe5091f2f44175fbf1c38f13dee7b04abd6f..400419f0b000cd1538f062d4fa09b134300e1130 100644 |
--- a/third_party/WebKit/Source/core/dom/Microtask.cpp |
+++ b/third_party/WebKit/Source/core/dom/Microtask.cpp |
@@ -73,7 +73,7 @@ void Microtask::enqueueMicrotask(PassOwnPtr<WebTaskRunner::Task> callback) |
void Microtask::enqueueMicrotask(PassOwnPtr<Closure> callback) |
{ |
- enqueueMicrotask(adoptPtr(new Task(callback))); |
+ enqueueMicrotask(adoptPtr(new SameThreadTask(callback))); |
} |
} // namespace blink |