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

Unified Diff: net/base/origin_bound_cert_store.cc

Issue 9617039: Change Origin bound certs -> Domain bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename all the things Created 8 years, 9 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
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
index af2acce658e15ea6dbaa4b0f0fbdc298bd3af6db..2d90943f6f8fc5feaf3a7f1f0a6fc14a387aeb2a 100644
--- a/net/base/origin_bound_cert_store.cc
+++ b/net/base/origin_bound_cert_store.cc
@@ -6,24 +6,24 @@
namespace net {
-OriginBoundCertStore::OriginBoundCert::OriginBoundCert()
+ServerBoundCertStore::ServerBoundCert::ServerBoundCert()
: type_(CLIENT_CERT_INVALID_TYPE) {
}
-OriginBoundCertStore::OriginBoundCert::OriginBoundCert(
- const std::string& origin,
+ServerBoundCertStore::ServerBoundCert::ServerBoundCert(
+ const std::string& server,
SSLClientCertType type,
base::Time creation_time,
base::Time expiration_time,
const std::string& private_key,
const std::string& cert)
- : origin_(origin),
+ : server_(server),
type_(type),
creation_time_(creation_time),
expiration_time_(expiration_time),
private_key_(private_key),
cert_(cert) {}
-OriginBoundCertStore::OriginBoundCert::~OriginBoundCert() {}
+ServerBoundCertStore::ServerBoundCert::~ServerBoundCert() {}
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698