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

Unified Diff: net/socket/ssl_server_socket_nss.h

Issue 1882433002: Removing NSS files and USE_OPENSSL flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 8 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/socket/ssl_client_socket_unittest.cc ('k') | net/socket/ssl_server_socket_nss.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_server_socket_nss.h
diff --git a/net/socket/ssl_server_socket_nss.h b/net/socket/ssl_server_socket_nss.h
deleted file mode 100644
index 9464cede8ff78b3a032aef6214298b6cdfa38535..0000000000000000000000000000000000000000
--- a/net/socket/ssl_server_socket_nss.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_
-#define NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_
-
-#include <certt.h>
-#include <keyt.h>
-#include <nspr.h>
-#include <nss.h>
-#include <stdint.h>
-
-#include <memory>
-
-#include "base/macros.h"
-#include "net/base/completion_callback.h"
-#include "net/base/host_port_pair.h"
-#include "net/base/nss_memio.h"
-#include "net/log/net_log.h"
-#include "net/socket/ssl_server_socket.h"
-#include "net/ssl/ssl_server_config.h"
-
-namespace net {
-
-class SSLServerContextNSS : public SSLServerContext {
- public:
- SSLServerContextNSS(X509Certificate* certificate,
- const crypto::RSAPrivateKey& key,
- const SSLServerConfig& ssl_server_config);
- ~SSLServerContextNSS() override;
-
- std::unique_ptr<SSLServerSocket> CreateSSLServerSocket(
- std::unique_ptr<StreamSocket> socket) override;
-
- private:
- // Options for the SSL socket.
- SSLServerConfig ssl_server_config_;
-
- // Certificate for the server.
- scoped_refptr<X509Certificate> cert_;
-
- // Private key used by the server.
- std::unique_ptr<crypto::RSAPrivateKey> key_;
-};
-
-} // namespace net
-
-#endif // NET_SOCKET_SSL_SERVER_SOCKET_NSS_H_
« no previous file with comments | « net/socket/ssl_client_socket_unittest.cc ('k') | net/socket/ssl_server_socket_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698