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

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

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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..58130645d165a673355ca668d7284d10f9fba10b 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
@@ -145,8 +145,9 @@ TEST_F(WebThreadImplForWorkerSchedulerTest, TestIdleTask) {
base::WaitableEvent::InitialState::NOT_SIGNALED);
EXPECT_CALL(*task, run(_));
- ON_CALL(*task, run(_))
- .WillByDefault(Invoke([&completion](double) { completion.Signal(); }));
+ ON_CALL(*task, run(_)).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.

Powered by Google App Engine
This is Rietveld 408576698