Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ | 5 #ifndef BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ |
| 6 #define BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ | 6 #define BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/base_export.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/threading/task_runner_handle.h" | |
| 11 | 12 |
| 12 namespace base { | 13 namespace base { |
| 13 | 14 |
| 14 class SequencedTaskRunner; | 15 class SequencedTaskRunner; |
| 15 | 16 |
| 16 class BASE_EXPORT SequencedTaskRunnerHandle { | 17 class BASE_EXPORT SequencedTaskRunnerHandle { |
| 17 public: | 18 public: |
| 18 // Returns a SequencedTaskRunner which guarantees that posted tasks will only | 19 // Deprecated, use TaskRunnerHandle::GetSequenced() instead. |
|
robliao
2016/06/09 15:40:18
Might be helpful to put a deprecated banner above
gab
2016/06/14 15:38:59
Done.
| |
| 19 // run after the current task is finished and will satisfy a SequenceChecker. | 20 static scoped_refptr<SequencedTaskRunner> Get() { |
| 20 // It should only be called if IsSet() returns true (see the comment there for | 21 return TaskRunnerHandle::GetSequenced(); |
| 21 // the requirements). | 22 } |
| 22 static scoped_refptr<SequencedTaskRunner> Get(); | |
| 23 | 23 |
| 24 // Returns true if one of the following conditions is fulfilled: | 24 // Deprecated, use TaskRunnerHandle::HasSequencedTaskScope() instead. |
| 25 // a) A SequencedTaskRunner has been assigned to the current thread by | 25 static bool IsSet() { return TaskRunnerHandle::HasSequencedTaskScope(); } |
| 26 // instantiating a SequencedTaskRunnerHandle. | |
| 27 // b) The current thread has a ThreadTaskRunnerHandle (which includes any | |
| 28 // thread that has a MessageLoop associated with it), or | |
| 29 // c) The current thread is a worker thread belonging to a | |
| 30 // SequencedWorkerPool. | |
| 31 static bool IsSet(); | |
| 32 | 26 |
| 33 // Binds |task_runner| to the current thread. | 27 // Binds |task_runner| to the current thread. Deprecated, use |
| 28 // TaskRunnerHandle::SequencedTaskScope instead. | |
| 34 explicit SequencedTaskRunnerHandle( | 29 explicit SequencedTaskRunnerHandle( |
| 35 scoped_refptr<SequencedTaskRunner> task_runner); | 30 scoped_refptr<SequencedTaskRunner> task_runner); |
| 36 ~SequencedTaskRunnerHandle(); | 31 ~SequencedTaskRunnerHandle(); |
| 37 | 32 |
| 38 private: | 33 private: |
| 39 scoped_refptr<SequencedTaskRunner> task_runner_; | 34 TaskRunnerHandle::SequencedTaskScope task_scope_; |
| 40 | 35 |
| 41 DISALLOW_COPY_AND_ASSIGN(SequencedTaskRunnerHandle); | 36 DISALLOW_COPY_AND_ASSIGN(SequencedTaskRunnerHandle); |
| 42 }; | 37 }; |
| 43 | 38 |
| 44 } // namespace base | 39 } // namespace base |
| 45 | 40 |
| 46 #endif // BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ | 41 #endif // BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ |
| OLD | NEW |