Index: net/base/origin_bound_cert_store.cc |
diff --git a/net/base/origin_bound_cert_store.cc b/net/base/origin_bound_cert_store.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..16d054a63a8d8bd530b68856ef39e38d02068799 |
--- /dev/null |
+++ b/net/base/origin_bound_cert_store.cc |
@@ -0,0 +1,23 @@ |
+// Copyright (c) 2011 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/origin_bound_cert_store.h" |
+ |
+namespace net { |
+ |
+OriginBoundCertStore::OriginBoundCert::OriginBoundCert() {} |
+ |
+OriginBoundCertStore::OriginBoundCert::OriginBoundCert( |
+ const std::string& origin, |
+ SSLClientCertType type, |
+ const std::string& private_key, |
+ const std::string& cert) |
+ : origin_(origin), |
+ type_(type), |
+ private_key_(private_key), |
+ cert_(cert) {} |
+ |
+OriginBoundCertStore::OriginBoundCert::~OriginBoundCert() {} |
+ |
+} // namespace net |