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

Unified Diff: chromecast/base/system_time_change_notifier_unittest.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 | « chrome/browser/memory/tab_manager_unittest.cc ('k') | chromeos/dbus/blocking_method_caller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/base/system_time_change_notifier_unittest.cc
diff --git a/chromecast/base/system_time_change_notifier_unittest.cc b/chromecast/base/system_time_change_notifier_unittest.cc
index 9f2ffa6abee04edde5fc8680d0749346b0235a2d..3372aa9cd297110a3cb6b1ae9d072e69195ea6fd 100644
--- a/chromecast/base/system_time_change_notifier_unittest.cc
+++ b/chromecast/base/system_time_change_notifier_unittest.cc
@@ -5,6 +5,7 @@
#include "chromecast/base/system_time_change_notifier.h"
#include <memory>
+#include <utility>
#include "base/bind.h"
#include "base/location.h"
@@ -27,14 +28,14 @@ class SequencedTaskRunnerNoDelay : public base::SequencedTaskRunner {
// base::SequencedTaskRunner implementation:
bool PostDelayedTask(const tracked_objects::Location& from_here,
- const base::Closure& task,
+ base::Closure task,
base::TimeDelta delay) override {
- base::ThreadTaskRunnerHandle::Get()->PostTask(from_here, task);
+ base::ThreadTaskRunnerHandle::Get()->PostTask(from_here, std::move(task));
return true;
}
bool PostNonNestableDelayedTask(const tracked_objects::Location& from_here,
- const base::Closure& task,
+ base::Closure task,
base::TimeDelta delay) override {
return true;
}
« no previous file with comments | « chrome/browser/memory/tab_manager_unittest.cc ('k') | chromeos/dbus/blocking_method_caller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698