summaryrefslogtreecommitdiffstats
path: root/chromeos/network/onc/onc_normalizer.cc
diff options
context:
space:
mode:
authorpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 15:43:54 +0000
committerpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 15:43:54 +0000
commit0254eff83a72ea3298c0d17d00c1e0259736a8d3 (patch)
treed19eaa254ea76d3ba535b4d3981983767ae8ac40 /chromeos/network/onc/onc_normalizer.cc
parentf381e90d6f112bc395d7cf743cfa199737041541 (diff)
downloadchromium_src-0254eff83a72ea3298c0d17d00c1e0259736a8d3.zip
chromium_src-0254eff83a72ea3298c0d17d00c1e0259736a8d3.tar.gz
chromium_src-0254eff83a72ea3298c0d17d00c1e0259736a8d3.tar.bz2
Rename ONC field Trust to TrustBits.
BUG=159058, 216495 Review URL: https://chromiumcodereview.appspot.com/13473003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193111 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/network/onc/onc_normalizer.cc')
-rw-r--r--chromeos/network/onc/onc_normalizer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/network/onc/onc_normalizer.cc b/chromeos/network/onc/onc_normalizer.cc
index 9eb3b55..bd1b910 100644
--- a/chromeos/network/onc/onc_normalizer.cc
+++ b/chromeos/network/onc/onc_normalizer.cc
@@ -88,7 +88,7 @@ void Normalizer::NormalizeCertificate(base::DictionaryValue* cert) {
std::string type;
cert->GetStringWithoutPathExpansion(certificate::kType, &type);
RemoveEntryUnless(cert, kPKCS12, type == kClient);
- RemoveEntryUnless(cert, kTrust, type == kServer || type == kAuthority);
+ RemoveEntryUnless(cert, kTrustBits, type == kServer || type == kAuthority);
RemoveEntryUnless(cert, kX509, type == kServer || type == kAuthority);
}