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

Unified Diff: Source/platform/scheduler/SchedulerTest.cpp

Issue 400153002: Change WokerThread to use a blink::WebThread. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use blink-side postDelayedTask instead of chromium Timer. Created 6 years, 5 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: Source/platform/scheduler/SchedulerTest.cpp
diff --git a/Source/platform/scheduler/SchedulerTest.cpp b/Source/platform/scheduler/SchedulerTest.cpp
index 0b35485e9232fb0518f3c5ef9e964dca34c5de72..dba68c7a807f306279d8b247632fc0075c613ab8 100644
--- a/Source/platform/scheduler/SchedulerTest.cpp
+++ b/Source/platform/scheduler/SchedulerTest.cpp
@@ -44,6 +44,21 @@ public:
ASSERT_NOT_REACHED();
}
+ virtual void setSharedTimerFiredFunction(SharedTimerFunction timerFunction) OVERRIDE
+ {
+ ASSERT_NOT_REACHED();
+ }
+
+ virtual void setSharedTimerFireInterval(double interval) OVERRIDE
+ {
+ ASSERT_NOT_REACHED();
+ }
+
+ virtual void stopSharedTimer() OVERRIDE
+ {
+ ASSERT_NOT_REACHED();
+ }
+
void runPendingTasks()
{
while (!m_pendingTasks.isEmpty())

Powered by Google App Engine
This is Rietveld 408576698