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

Unified Diff: base/test/test_pending_task.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
« no previous file with comments | « base/test/test_pending_task.h ('k') | base/test/test_simple_task_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/test_pending_task.cc
diff --git a/base/test/test_pending_task.cc b/base/test/test_pending_task.cc
index 98bc0179b8e0b91a4734f80d5c566a12bf13225e..63bdfffacd681bdc67a985d42e660fe6c361573f 100644
--- a/base/test/test_pending_task.cc
+++ b/base/test/test_pending_task.cc
@@ -2,22 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include <string>
-
#include "base/test/test_pending_task.h"
+#include <string>
+#include <utility>
+
namespace base {
TestPendingTask::TestPendingTask() : nestability(NESTABLE) {}
-TestPendingTask::TestPendingTask(
- const tracked_objects::Location& location,
- const Closure& task,
- TimeTicks post_time,
- TimeDelta delay,
- TestNestability nestability)
+TestPendingTask::TestPendingTask(const tracked_objects::Location& location,
+ Closure task,
+ TimeTicks post_time,
+ TimeDelta delay,
+ TestNestability nestability)
: location(location),
- task(task),
+ task(std::move(task)),
post_time(post_time),
delay(delay),
nestability(nestability) {}
« no previous file with comments | « base/test/test_pending_task.h ('k') | base/test/test_simple_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698