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 |