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

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

Issue 1031843002: Move IdleTask to WebThread side 1/3 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix compile Created 5 years, 9 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 | « no previous file | Source/platform/scheduler/SchedulerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scheduler/Scheduler.cpp
diff --git a/Source/platform/scheduler/Scheduler.cpp b/Source/platform/scheduler/Scheduler.cpp
index e8744a6d67f5493a86444c207738309dadfe8b26..bdd1f196543842399f5a2bd26cfc5b5fa07cbae2 100644
--- a/Source/platform/scheduler/Scheduler.cpp
+++ b/Source/platform/scheduler/Scheduler.cpp
@@ -11,7 +11,7 @@
namespace blink {
-class IdleTaskRunner : public WebScheduler::IdleTask {
+class IdleTaskRunner : public WebThread::IdleTask {
WTF_MAKE_NONCOPYABLE(IdleTaskRunner);
public:
@@ -24,7 +24,7 @@ public:
{
}
- // WebScheduler::IdleTask implementation.
+ // WebThread::IdleTask implementation.
void run(double deadlineSeconds) override
{
(*m_task)(deadlineSeconds);
« no previous file with comments | « no previous file | Source/platform/scheduler/SchedulerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698