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

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

Issue 2053503004: Replace forward declarations with includes in TaskRunner APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: self-review Created 4 years, 6 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/task_runner.h ('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
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/compiler_specific.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 12
12 namespace base { 13 namespace base {
13 14
14 class SequencedTaskRunner;
15
16 class BASE_EXPORT SequencedTaskRunnerHandle { 15 class BASE_EXPORT SequencedTaskRunnerHandle {
17 public: 16 public:
18 // Returns a SequencedTaskRunner which guarantees that posted tasks will only 17 // Returns a SequencedTaskRunner which guarantees that posted tasks will only
19 // run after the current task is finished and will satisfy a SequenceChecker. 18 // run after the current task is finished and will satisfy a SequenceChecker.
20 // It should only be called if IsSet() returns true (see the comment there for 19 // It should only be called if IsSet() returns true (see the comment there for
21 // the requirements). 20 // the requirements).
22 static scoped_refptr<SequencedTaskRunner> Get(); 21 static scoped_refptr<SequencedTaskRunner> Get();
23 22
24 // Returns true if one of the following conditions is fulfilled: 23 // Returns true if one of the following conditions is fulfilled:
25 // a) A SequencedTaskRunner has been assigned to the current thread by 24 // a) A SequencedTaskRunner has been assigned to the current thread by
(...skipping 11 matching lines...) Expand all
37 36
38 private: 37 private:
39 scoped_refptr<SequencedTaskRunner> task_runner_; 38 scoped_refptr<SequencedTaskRunner> task_runner_;
40 39
41 DISALLOW_COPY_AND_ASSIGN(SequencedTaskRunnerHandle); 40 DISALLOW_COPY_AND_ASSIGN(SequencedTaskRunnerHandle);
42 }; 41 };
43 42
44 } // namespace base 43 } // namespace base
45 44
46 #endif // BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_ 45 #endif // BASE_THREADING_SEQUENCED_TASK_RUNNER_HANDLE_H_
OLDNEW
« no previous file with comments | « base/task_runner.h ('k') | base/threading/sequenced_task_runner_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698