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

Unified Diff: net/cert/crl_set.cc

Issue 17034006: Add base namespace to more values in sync and elsewhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « net/base/net_log.cc ('k') | net/dns/dns_transaction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/crl_set.cc
diff --git a/net/cert/crl_set.cc b/net/cert/crl_set.cc
index 539fd6f0339cf5830d636f6e6466e5dfdcc3ffc4..2bdd5f4dcf03fbea388f3d4197c865beaad11b4c 100644
--- a/net/cert/crl_set.cc
+++ b/net/cert/crl_set.cc
@@ -133,12 +133,12 @@ static base::DictionaryValue* ReadHeader(base::StringPiece* data) {
const base::StringPiece header_bytes(data->data(), header_len);
data->remove_prefix(header_len);
- scoped_ptr<Value> header(base::JSONReader::Read(
+ scoped_ptr<base::Value> header(base::JSONReader::Read(
header_bytes, base::JSON_ALLOW_TRAILING_COMMAS));
if (header.get() == NULL)
return NULL;
- if (!header->IsType(Value::TYPE_DICTIONARY))
+ if (!header->IsType(base::Value::TYPE_DICTIONARY))
return NULL;
return reinterpret_cast<base::DictionaryValue*>(header.release());
}
« no previous file with comments | « net/base/net_log.cc ('k') | net/dns/dns_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698