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

Unified Diff: net/ssl/ssl_platform_key_task_runner.cc

Issue 2391213002: Report curve types in ECDSA SSLPrivateKeys. (Closed)
Patch Set: rebase Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/ssl/ssl_platform_key_task_runner.h ('k') | net/ssl/ssl_platform_key_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/ssl_platform_key_task_runner.cc
diff --git a/net/ssl/ssl_platform_key_task_runner.cc b/net/ssl/ssl_platform_key_task_runner.cc
deleted file mode 100644
index 2ef8469c15f263249dedfab8fd8d2186971717ae..0000000000000000000000000000000000000000
--- a/net/ssl/ssl_platform_key_task_runner.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/ssl/ssl_platform_key_task_runner.h"
-
-#include "base/lazy_instance.h"
-
-namespace net {
-
-SSLPlatformKeyTaskRunner::SSLPlatformKeyTaskRunner()
- : worker_thread_("Platform Key Thread") {
- base::Thread::Options options;
- options.joinable = false;
- worker_thread_.StartWithOptions(options);
-}
-
-SSLPlatformKeyTaskRunner::~SSLPlatformKeyTaskRunner() = default;
-
-scoped_refptr<base::SingleThreadTaskRunner>
-SSLPlatformKeyTaskRunner::task_runner() {
- return worker_thread_.task_runner();
-}
-
-base::LazyInstance<SSLPlatformKeyTaskRunner>::Leaky g_platform_key_task_runner =
- LAZY_INSTANCE_INITIALIZER;
-
-scoped_refptr<base::SingleThreadTaskRunner> GetSSLPlatformKeyTaskRunner() {
- return g_platform_key_task_runner.Get().task_runner();
-}
-
-} // namespace net
« no previous file with comments | « net/ssl/ssl_platform_key_task_runner.h ('k') | net/ssl/ssl_platform_key_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698