| 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/sequenced_task_runner.h" | 11 #include "base/sequenced_task_runner.h" |
| 12 #include "base/threading/task_runner_handle.h" |
| 12 | 13 |
| 13 namespace base { | 14 namespace base { |
| 14 | 15 |
| 16 // Deprecated, see below for specifics. |
| 17 // TODO(gab): Migrate few users of this API and delete it. |
| 15 class BASE_EXPORT SequencedTaskRunnerHandle { | 18 class BASE_EXPORT SequencedTaskRunnerHandle { |
| 16 public: | 19 public: |
| 17 // Returns a SequencedTaskRunner which guarantees that posted tasks will only | 20 // Deprecated, use TaskRunnerHandle::GetSequenced() instead. |
| 18 // run after the current task is finished and will satisfy a SequenceChecker. | 21 static scoped_refptr<SequencedTaskRunner> Get() { |
| 19 // It should only be called if IsSet() returns true (see the comment there for | 22 return TaskRunnerHandle::GetSequenced(); |
| 20 // the requirements). | 23 } |
| 21 static scoped_refptr<SequencedTaskRunner> Get(); | |
| 22 | 24 |
| 23 // Returns true if one of the following conditions is fulfilled: | 25 // Deprecated, use TaskRunnerHandle::HasSequencedTaskScope() instead. |
| 24 // a) A SequencedTaskRunner has been assigned to the current thread by | 26 static bool IsSet() { return TaskRunnerHandle::HasSequencedTaskScope(); } |
| 25 // instantiating a SequencedTaskRunnerHandle. | |
| 26 // b) The current thread has a ThreadTaskRunnerHandle (which includes any | |
| 27 // thread that has a MessageLoop associated with it), or | |
| 28 // c) The current thread is a worker thread belonging to a | |
| 29 // SequencedWorkerPool. | |
| 30 static bool IsSet(); | |
| 31 | 27 |
| 32 // Binds |task_runner| to the current thread. | 28 // Binds |task_runner| to the current thread. Deprecated, use |
| 29 // TaskRunnerHandle::SequencedTaskScope instead. |
| 33 explicit SequencedTaskRunnerHandle( | 30 explicit SequencedTaskRunnerHandle( |
| 34 scoped_refptr<SequencedTaskRunner> task_runner); | 31 scoped_refptr<SequencedTaskRunner> task_runner); |
| 35 ~SequencedTaskRunnerHandle(); | 32 ~SequencedTaskRunnerHandle(); |
| 36 | 33 |
| 37 private: | 34 private: |
| 38 scoped_refptr<SequencedTaskRunner> task_runner_; | 35 TaskRunnerHandle::SequencedTaskScope task_scope_; |
| 39 | 36 |
| 40 DISALLOW_COPY_AND_ASSIGN(SequencedTaskRunnerHandle); | 37 DISALLOW_COPY_AND_ASSIGN(SequencedTaskRunnerHandle); |
| 41 }; | 38 }; |
| 42 | 39 |
| 43 } // namespace base | 40 } // namespace base |
| 44 | 41 |
| 45 #endif // BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ | 42 #endif // BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ |
| OLD | NEW |