summaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
authorpneubeck <pneubeck@chromium.org>2014-10-21 04:13:28 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-21 11:14:00 +0000
commit0b0885ca539071e7864061fde54c7345a0fd2aae (patch)
treec6ef5461e0a2e712cb8e07a176bf0c1978c55b54 /chromeos
parent0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c (diff)
downloadchromium_src-0b0885ca539071e7864061fde54c7345a0fd2aae.zip
chromium_src-0b0885ca539071e7864061fde54c7345a0fd2aae.tar.gz
chromium_src-0b0885ca539071e7864061fde54c7345a0fd2aae.tar.bz2
Remove dead code from certificate_pattern.h
BUG=NONE Review URL: https://codereview.chromium.org/658413002 Cr-Commit-Position: refs/heads/master@{#300455}
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_;
}