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

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

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) 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/WebTaskRunner.cpp
diff --git a/third_party/WebKit/Source/platform/WebTaskRunner.cpp b/third_party/WebKit/Source/platform/WebTaskRunner.cpp
index 3555a3eb8452cfbd5b251e0da7464e09d7962dfe..77cc20d91c93470ff8b8635d3b463b80bf1e3711 100644
--- a/third_party/WebKit/Source/platform/WebTaskRunner.cpp
+++ b/third_party/WebKit/Source/platform/WebTaskRunner.cpp
@@ -149,8 +149,9 @@ TaskHandle WebTaskRunner::postCancellableTask(
DCHECK(runsTasksOnCurrentThread());
RefPtr<TaskHandle::Runner> runner =
adoptRef(new TaskHandle::Runner(std::move(task)));
- postTask(location, WTF::bind(&TaskHandle::Runner::run, runner->asWeakPtr(),
- TaskHandle(runner)));
+ postTask(location,
+ WTF::bind(&TaskHandle::Runner::run, runner->asWeakPtr(),
+ TaskHandle(runner)));
return TaskHandle(runner);
}
@@ -161,8 +162,9 @@ TaskHandle WebTaskRunner::postDelayedCancellableTask(
DCHECK(runsTasksOnCurrentThread());
RefPtr<TaskHandle::Runner> runner =
adoptRef(new TaskHandle::Runner(std::move(task)));
- postDelayedTask(location, WTF::bind(&TaskHandle::Runner::run,
- runner->asWeakPtr(), TaskHandle(runner)),
+ postDelayedTask(location,
+ WTF::bind(&TaskHandle::Runner::run, runner->asWeakPtr(),
+ TaskHandle(runner)),
delayMs);
return TaskHandle(runner);
}
« no previous file with comments | « third_party/WebKit/Source/platform/TimerTest.cpp ('k') | third_party/WebKit/Source/platform/WebTaskRunnerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698