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

Side by Side Diff: net/ssl/ssl_platform_key_task_runner.h

Issue 1304143010: Plumbing SSLPrivateKey Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 3 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698