Index: Source/platform/WebScheduler.cpp |
diff --git a/Source/platform/WebScheduler.cpp b/Source/platform/WebScheduler.cpp |
index 68e5ca7940c586b1f8487b7b87187b962b2b484b..ead873369c22661b047e76fa08fbd9e4302a99cf 100644 |
--- a/Source/platform/WebScheduler.cpp |
+++ b/Source/platform/WebScheduler.cpp |
@@ -59,4 +59,9 @@ void WebScheduler::postLoadingTask(const WebTraceLocation& location, PassOwnPtr< |
postLoadingTask(location, new blink::Task(task)); |
} |
+void WebScheduler::postTimerTask(const WebTraceLocation& location, PassOwnPtr<Task> task, long long delayMs) |
+{ |
+ postTimerTask(location, new blink::Task(task), delayMs); |
+} |
+ |
} // namespace blink |