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

Unified Diff: Source/platform/WebScheduler.cpp

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing #include Created 5 years, 3 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
« no previous file with comments | « Source/platform/TimerTest.cpp ('k') | Source/platform/WebTaskRunner.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/WebScheduler.cpp
diff --git a/Source/platform/WebScheduler.cpp b/Source/platform/WebScheduler.cpp
index ead873369c22661b047e76fa08fbd9e4302a99cf..6d865608be693632bf1b9e543686ea7ba56410bc 100644
--- a/Source/platform/WebScheduler.cpp
+++ b/Source/platform/WebScheduler.cpp
@@ -54,14 +54,4 @@ void WebScheduler::postIdleTaskAfterWakeup(const WebTraceLocation& location, Pas
postIdleTaskAfterWakeup(location, new IdleTaskRunner(idleTask));
}
-void WebScheduler::postLoadingTask(const WebTraceLocation& location, PassOwnPtr<Task> task)
-{
- 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
« no previous file with comments | « Source/platform/TimerTest.cpp ('k') | Source/platform/WebTaskRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698