summaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos')
-rw-r--r--chromeos/network/certificate_pattern.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/chromeos/network/certificate_pattern.h b/chromeos/network/certificate_pattern.h
index 9db5446..3c78764 100644
--- a/chromeos/network/certificate_pattern.h
+++ b/chromeos/network/certificate_pattern.h
@@ -34,15 +34,6 @@ class CHROMEOS_EXPORT IssuerSubjectPattern {
// Clears out all values in this pattern.
void Clear();
- void set_common_name(const std::string& name) { common_name_ = name; }
- void set_locality(const std::string& locality) { locality_ = locality; }
- void set_organization(const std::string& organization) {
- organization_ = organization;
- }
- void set_organizational_unit(const std::string& unit) {
- organizational_unit_ = unit;
- }
-
const std::string& common_name() const {
return common_name_;
}
@@ -78,12 +69,6 @@ class CHROMEOS_EXPORT CertificatePattern {
// all certs). Ignores enrollment_uri_;
bool Empty() const;
- void set_issuer(const IssuerSubjectPattern& issuer) { issuer_ = issuer; }
- void set_subject(const IssuerSubjectPattern& subject) { subject_ = subject; }
- void set_enrollment_uri_list(const std::vector<std::string>& uri_list) {
- enrollment_uri_list_ = uri_list;
- }
-
const IssuerSubjectPattern& issuer() const {
return issuer_;
}