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

Unified Diff: base/threading/worker_pool_win.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 | « base/threading/worker_pool_posix.cc ('k') | base/trace_event/memory_dump_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/threading/worker_pool_win.cc
diff --git a/base/threading/worker_pool_win.cc b/base/threading/worker_pool_win.cc
index 575caaa6ba803079b4b37991de26026934682c0b..f1d7da27c29fb1bd4a16c1dd72ad182dbb02db85 100644
--- a/base/threading/worker_pool_win.cc
+++ b/base/threading/worker_pool_win.cc
@@ -27,7 +27,7 @@ DWORD CALLBACK WorkItemCallback(void* param) {
tracked_objects::TaskStopwatch stopwatch;
stopwatch.Start();
- pending_task->task.Run();
+ std::move(pending_task->task).Run();
stopwatch.Stop();
g_worker_pool_running_on_this_thread.Get().Set(false);
@@ -58,8 +58,9 @@ bool PostTaskInternal(PendingTask* pending_task, bool task_is_slow) {
// static
bool WorkerPool::PostTask(const tracked_objects::Location& from_here,
- const base::Closure& task, bool task_is_slow) {
- PendingTask* pending_task = new PendingTask(from_here, task);
+ base::OnceClosure task,
+ bool task_is_slow) {
+ PendingTask* pending_task = new PendingTask(from_here, std::move(task));
return PostTaskInternal(pending_task, task_is_slow);
}
« no previous file with comments | « base/threading/worker_pool_posix.cc ('k') | base/trace_event/memory_dump_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698