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

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

Issue 2726523002: Pass Callback to TaskRunner by value and consume it on invocation (1) (Closed)
Patch Set: erase Closure* Created 3 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
Index: third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
diff --git a/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc b/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
index 5656c705d4cd773d8d2a7edf33590fd57c48aa35..ad6fa035f853fcc701959799af76f5151b0a1ac0 100644
--- a/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
+++ b/third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate_for_test.cc
@@ -41,16 +41,17 @@ void SchedulerTqmDelegateForTest::RestoreDefaultTaskRunner() {
bool SchedulerTqmDelegateForTest::PostDelayedTask(
const tracked_objects::Location& from_here,
- const base::Closure& task,
+ base::Closure task,
base::TimeDelta delay) {
- return task_runner_->PostDelayedTask(from_here, task, delay);
+ return task_runner_->PostDelayedTask(from_here, std::move(task), delay);
}
bool SchedulerTqmDelegateForTest::PostNonNestableDelayedTask(
const tracked_objects::Location& from_here,
- const base::Closure& task,
+ base::Closure task,
base::TimeDelta delay) {
- return task_runner_->PostNonNestableDelayedTask(from_here, task, delay);
+ return task_runner_->PostNonNestableDelayedTask(from_here, std::move(task),
+ delay);
}
bool SchedulerTqmDelegateForTest::RunsTasksOnCurrentThread() const {

Powered by Google App Engine
This is Rietveld 408576698