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

Side by Side Diff: trunk/src/base/sequenced_task_runner.cc

Issue 14985007: Revert 198844 "Move sequenced_task_runner to base/task" (Closed) Base URL: svn://svn.chromium.org/chrome/
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 | « trunk/src/base/sequenced_task_runner.h ('k') | trunk/src/base/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/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
(...skipping 11 matching lines...) Expand all
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 | « trunk/src/base/sequenced_task_runner.h ('k') | trunk/src/base/sequenced_task_runner_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698