summaryrefslogtreecommitdiffstats
path: root/chrome/browser/performance_monitor/database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/performance_monitor/database.cc')
-rw-r--r--chrome/browser/performance_monitor/database.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/performance_monitor/database.cc b/chrome/browser/performance_monitor/database.cc
index 4d34ef2..bd2f432c 100644
--- a/chrome/browser/performance_monitor/database.cc
+++ b/chrome/browser/performance_monitor/database.cc
@@ -57,12 +57,12 @@ double StringToDouble(const std::string& s) {
// Returns an event from the given JSON string; the scoped_ptr will be NULL if
// we are unable to properly parse the JSON.
scoped_ptr<Event> EventFromJSON(const std::string& data) {
- Value* value = base::JSONReader::Read(data);
- DictionaryValue* dict = NULL;
+ base::Value* value = base::JSONReader::Read(data);
+ base::DictionaryValue* dict = NULL;
if (!value || !value->GetAsDictionary(&dict))
return scoped_ptr<Event>();
- return Event::FromValue(scoped_ptr<DictionaryValue>(dict));
+ return Event::FromValue(scoped_ptr<base::DictionaryValue>(dict));
}
} // namespace