summaryrefslogtreecommitdiffstats
path: root/base/test/trace_event_analyzer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/test/trace_event_analyzer.cc')
-rw-r--r--base/test/trace_event_analyzer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/test/trace_event_analyzer.cc b/base/test/trace_event_analyzer.cc
index 8457ce9..94d49a4 100644
--- a/base/test/trace_event_analyzer.cc
+++ b/base/test/trace_event_analyzer.cc
@@ -643,12 +643,12 @@ bool ParseEventsFromJson(const std::string& json,
scoped_ptr<base::Value> root;
root.reset(base::JSONReader::Read(json));
- ListValue* root_list = NULL;
+ base::ListValue* root_list = NULL;
if (!root.get() || !root->GetAsList(&root_list))
return false;
for (size_t i = 0; i < root_list->GetSize(); ++i) {
- Value* item = NULL;
+ base::Value* item = NULL;
if (root_list->Get(i, &item)) {
TraceEvent event;
if (event.SetFromJSON(item))