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

Unified Diff: remoting/base/auto_thread_task_runner.cc

Issue 2122543002: Replace Closure in TaskRunner::PostTask with OneShotCallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@07_oneshot
Patch Set: fix Created 4 years, 3 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 | « remoting/base/auto_thread_task_runner.h ('k') | remoting/client/plugin/pepper_main_thread_task_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/auto_thread_task_runner.cc
diff --git a/remoting/base/auto_thread_task_runner.cc b/remoting/base/auto_thread_task_runner.cc
index f155cbc34607e6f2add5a27180704004af2fcae2..5ec1e0d7ae0f7732b67d5d3d0aec356e6643a7cc 100644
--- a/remoting/base/auto_thread_task_runner.cc
+++ b/remoting/base/auto_thread_task_runner.cc
@@ -10,25 +10,25 @@ namespace remoting {
AutoThreadTaskRunner::AutoThreadTaskRunner(
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
- const base::Closure& stop_task)
- : stop_task_(stop_task),
- task_runner_(task_runner) {
+ base::OnceClosure stop_task)
+ : stop_task_(std::move(stop_task)), task_runner_(task_runner) {
DCHECK(!stop_task_.is_null());
}
bool AutoThreadTaskRunner::PostDelayedTask(
const tracked_objects::Location& from_here,
- const base::Closure& task,
+ base::OnceClosure task,
base::TimeDelta delay) {
- CHECK(task_runner_->PostDelayedTask(from_here, task, delay));
+ CHECK(task_runner_->PostDelayedTask(from_here, std::move(task), delay));
return true;
}
bool AutoThreadTaskRunner::PostNonNestableDelayedTask(
const tracked_objects::Location& from_here,
- const base::Closure& task,
+ base::OnceClosure task,
base::TimeDelta delay) {
- CHECK(task_runner_->PostNonNestableDelayedTask(from_here, task, delay));
+ CHECK(task_runner_->PostNonNestableDelayedTask(from_here, std::move(task),
+ delay));
return true;
}
@@ -37,7 +37,7 @@ bool AutoThreadTaskRunner::RunsTasksOnCurrentThread() const {
}
AutoThreadTaskRunner::~AutoThreadTaskRunner() {
- CHECK(task_runner_->PostTask(FROM_HERE, stop_task_));
+ CHECK(task_runner_->PostTask(FROM_HERE, std::move(stop_task_)));
}
} // namespace remoting
« no previous file with comments | « remoting/base/auto_thread_task_runner.h ('k') | remoting/client/plugin/pepper_main_thread_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698