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

Unified Diff: third_party/WebKit/Source/platform/scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc

Issue 2798563003: [scheduler] Add TaskQueue::Observer (Closed)
Patch Set: add todo for test timings & wake_up -> wake-up in comments Created 3 years, 8 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/scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc
diff --git a/third_party/WebKit/Source/platform/scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc b/third_party/WebKit/Source/platform/scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc
index dc50950bdb37f0948cca5aad0dee731fd4632784..0ea77985976321263b3d6cf7489410a0e190eb1c 100644
--- a/third_party/WebKit/Source/platform/scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc
+++ b/third_party/WebKit/Source/platform/scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc
@@ -149,7 +149,7 @@ TEST_F(WebThreadImplForWorkerSchedulerTest, TestIdleTask) {
.WillByDefault(Invoke([&completion](double) { completion.Signal(); }));
thread_->postIdleTask(BLINK_FROM_HERE, task.release());
- // We need to post a wakeup task or idle work will never happen.
+ // We need to post a wake-up task or idle work will never happen.
thread_->getWebTaskRunner()->postDelayedTask(BLINK_FROM_HERE,
WTF::bind([] {}), 50ll);

Powered by Google App Engine
This is Rietveld 408576698