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

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: explanitory comment 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
« net/base/origin_bound_cert_store.h ('K') | « net/base/origin_bound_cert_store.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..5a09e272a39910bd32f5f2c4b3d48f6d9ad6a603 100644
--- a/net/base/origin_bound_cert_store.cc
+++ b/net/base/origin_bound_cert_store.cc
@@ -11,13 +11,13 @@ OriginBoundCertStore::OriginBoundCert::OriginBoundCert()
}
OriginBoundCertStore::OriginBoundCert::OriginBoundCert(
- const std::string& origin,
+ const std::string& domain,
SSLClientCertType type,
base::Time creation_time,
base::Time expiration_time,
const std::string& private_key,
const std::string& cert)
- : origin_(origin),
+ : domain_(domain),
type_(type),
creation_time_(creation_time),
expiration_time_(expiration_time),
« net/base/origin_bound_cert_store.h ('K') | « net/base/origin_bound_cert_store.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698