Index: net/base/server_bound_cert_store.cc |
diff --git a/net/base/server_bound_cert_store.cc b/net/base/server_bound_cert_store.cc |
deleted file mode 100644 |
index f5ca047b0b2b6f939cad5a6ea61481eac854108b..0000000000000000000000000000000000000000 |
--- a/net/base/server_bound_cert_store.cc |
+++ /dev/null |
@@ -1,37 +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. |
- |
-#include "net/base/server_bound_cert_store.h" |
- |
-namespace net { |
- |
-ServerBoundCertStore::ServerBoundCert::ServerBoundCert() |
- : type_(CLIENT_CERT_INVALID_TYPE) { |
-} |
- |
-ServerBoundCertStore::ServerBoundCert::ServerBoundCert( |
- const std::string& server_identifier, |
- SSLClientCertType type, |
- base::Time creation_time, |
- base::Time expiration_time, |
- const std::string& private_key, |
- const std::string& cert) |
- : server_identifier_(server_identifier), |
- type_(type), |
- creation_time_(creation_time), |
- expiration_time_(expiration_time), |
- private_key_(private_key), |
- cert_(cert) {} |
- |
-ServerBoundCertStore::ServerBoundCert::~ServerBoundCert() {} |
- |
-void ServerBoundCertStore::InitializeFrom(const ServerBoundCertList& list) { |
- for (ServerBoundCertList::const_iterator i = list.begin(); i != list.end(); |
- ++i) { |
- SetServerBoundCert(i->server_identifier(), i->type(), i->creation_time(), |
- i->expiration_time(), i->private_key(), i->cert()); |
- } |
-} |
- |
-} // namespace net |