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

Unified Diff: third_party/WebKit/Source/platform/TimerTest.cpp

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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: third_party/WebKit/Source/platform/TimerTest.cpp
diff --git a/third_party/WebKit/Source/platform/TimerTest.cpp b/third_party/WebKit/Source/platform/TimerTest.cpp
index 0c2266800a2d2feafa7b27608f34faecae70111a..bd37098d23719bd630a15a0608a47ec103ea104a 100644
--- a/third_party/WebKit/Source/platform/TimerTest.cpp
+++ b/third_party/WebKit/Source/platform/TimerTest.cpp
@@ -111,6 +111,12 @@ public:
return gCurrentTimeSecs;
}
+ base::SingleThreadTaskRunner* taskRunner() override
+ {
+ ASSERT_NOT_REACHED();
+ return nullptr;
+ }
+
std::priority_queue<DelayedTask>* m_timerTasks; // NOT OWNED
};
@@ -194,7 +200,7 @@ public:
}
void shutdown() override {}
- std::unique_ptr<WebViewScheduler> createWebViewScheduler(blink::WebView*) override { return nullptr; }
+ std::unique_ptr<WebViewScheduler> createWebViewScheduler(InterventionReporter*) override { return nullptr; }
void suspendTimerQueue() override { }
void resumeTimerQueue() override { }
void addPendingNavigation(WebScheduler::NavigatingFrameType) override { }
« no previous file with comments | « third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in ('k') | third_party/WebKit/Source/platform/blink_platform.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698