diff options
Diffstat (limited to 'base/test/trace_event_analyzer.cc')
-rw-r--r-- | base/test/trace_event_analyzer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/test/trace_event_analyzer.cc b/base/test/trace_event_analyzer.cc index ac4968c9..c0d9fae 100644 --- a/base/test/trace_event_analyzer.cc +++ b/base/test/trace_event_analyzer.cc @@ -644,7 +644,7 @@ size_t FindMatchingEvents(const std::vector<TraceEvent>& events, bool ParseEventsFromJson(const std::string& json, std::vector<TraceEvent>* output) { scoped_ptr<base::Value> root; - root.reset(base::JSONReader::Read(json, false)); + root.reset(base::JSONReader::Read(json)); ListValue* root_list = NULL; if (!root.get() || !root->GetAsList(&root_list)) |