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

Side by Side Diff: base/task/sequenced_task_runner.cc

Issue 14927008: Move sequenced_task_runner to base/task (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/task/sequenced_task_runner.h ('k') | base/task/sequenced_task_runner_helpers.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/sequenced_task_runner.h" 5 #include "base/task/sequenced_task_runner.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 8
9 namespace base { 9 namespace base {
10 10
11 bool SequencedTaskRunner::PostNonNestableTask( 11 bool SequencedTaskRunner::PostNonNestableTask(
12 const tracked_objects::Location& from_here, 12 const tracked_objects::Location& from_here,
13 const Closure& task) { 13 const Closure& task) {
14 return PostNonNestableDelayedTask(from_here, task, base::TimeDelta()); 14 return PostNonNestableDelayedTask(from_here, task, base::TimeDelta());
15 } 15 }
16 16
17 bool SequencedTaskRunner::DeleteSoonInternal( 17 bool SequencedTaskRunner::DeleteSoonInternal(
18 const tracked_objects::Location& from_here, 18 const tracked_objects::Location& from_here,
19 void(*deleter)(const void*), 19 void(*deleter)(const void*),
20 const void* object) { 20 const void* object) {
21 return PostNonNestableTask(from_here, Bind(deleter, object)); 21 return PostNonNestableTask(from_here, Bind(deleter, object));
22 } 22 }
23 23
24 bool SequencedTaskRunner::ReleaseSoonInternal( 24 bool SequencedTaskRunner::ReleaseSoonInternal(
25 const tracked_objects::Location& from_here, 25 const tracked_objects::Location& from_here,
26 void(*releaser)(const void*), 26 void(*releaser)(const void*),
27 const void* object) { 27 const void* object) {
28 return PostNonNestableTask(from_here, Bind(releaser, object)); 28 return PostNonNestableTask(from_here, Bind(releaser, object));
29 } 29 }
30 30
31 } // namespace base 31 } // namespace base
OLDNEW
« no previous file with comments | « base/task/sequenced_task_runner.h ('k') | base/task/sequenced_task_runner_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698