OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
davidben
2015/09/25 20:10:12
Some of the older files still have the (c) sign, b
svaldez
2015/09/28 16:54:53
Done.
| |
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 NET_SSL_SSL_PLATFORM_KEY_TASK_RUNNER_H_ | |
6 #define NET_SSL_SSL_PLATFORM_KEY_TASK_RUNNER_H_ | |
7 | |
8 #include "base/threading/sequenced_worker_pool.h" | |
9 | |
10 namespace net { | |
davidben
2015/09/25 20:10:12
Nit: newline
svaldez
2015/09/28 16:54:53
Done.
| |
11 class SSLPlatformKeyTaskRunner { | |
12 public: | |
13 SSLPlatformKeyTaskRunner(); | |
14 ~SSLPlatformKeyTaskRunner(); | |
davidben
2015/09/25 20:10:12
Rather than have everyone do a LazyInstance, perha
svaldez
2015/09/28 16:54:53
Done.
| |
15 | |
16 scoped_refptr<base::SequencedTaskRunner> task_runner(); | |
17 | |
18 private: | |
19 scoped_refptr<base::SequencedWorkerPool> worker_pool_; | |
20 scoped_refptr<base::SequencedTaskRunner> task_runner_; | |
21 | |
22 DISALLOW_COPY_AND_ASSIGN(SSLPlatformKeyTaskRunner); | |
23 }; | |
davidben
2015/09/25 20:10:12
Nit: newline
svaldez
2015/09/28 16:54:53
Done.
| |
24 } // namespace net | |
25 | |
26 #endif // NET_SSL_SSL_PLATFORM_KEY_TASK_RUNNER_H_ | |
OLD | NEW |