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

Side by Side Diff: base/threading/sequenced_task_runner_handle.h

Issue 1423773003: Add SequencedTaskRunnerHandle to get a SequencedTaskRunner for the current thread / sequence. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 2 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
« no previous file with comments | « base/base.gypi ('k') | base/threading/sequenced_task_runner_handle.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_
6 #define BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h"
10
11 namespace base {
12
13 class SequencedTaskRunner;
14
15 class SequencedTaskRunnerHandle {
16 public:
17 // Returns a SequencedTaskRunner which guarantees that posted tasks will only
18 // run after the current task is finished and will satisfy a SequenceChecker.
19 // It will only return a non-null value if one of the following conditions is
20 // fulfilled:
21 // a) The current thread has a ThreadTaskRunnerHandle (which includes any
22 // thread that has a MessageLoop associated with it), or
23 // b) The current thread is a worker thread belonging to a SequencedWorkerPool
24 // *and* is currently running a sequenced task.
25 static scoped_refptr<SequencedTaskRunner> Get();
Sami 2015/10/23 15:47:33 Could this follow the same IsSet/Get contract of T
Bernhard Bauer 2015/10/23 16:20:25 Done.
26
27 private:
28 DISALLOW_IMPLICIT_CONSTRUCTORS(SequencedTaskRunnerHandle);
29 };
30
31 } // namespace base
32
33 #endif // BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | base/threading/sequenced_task_runner_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698