| Index: base/test/trace_event_analyzer.cc
|
| diff --git a/base/test/trace_event_analyzer.cc b/base/test/trace_event_analyzer.cc
|
| index 64436dc1444bfd6e5db0a4c8762ea3392b1b6fbd..5e0976867f2c866448973d86f821cbaa5b6fa90e 100644
|
| --- a/base/test/trace_event_analyzer.cc
|
| +++ b/base/test/trace_event_analyzer.cc
|
| @@ -34,8 +34,8 @@ TraceEvent::~TraceEvent() {
|
| TraceEvent& TraceEvent::operator=(TraceEvent&& rhs) = default;
|
|
|
| bool TraceEvent::SetFromJSON(const base::Value* event_value) {
|
| - if (event_value->GetType() != base::Value::TYPE_DICTIONARY) {
|
| - LOG(ERROR) << "Value must be TYPE_DICTIONARY";
|
| + if (event_value->GetType() != base::Value::Type::DICTIONARY) {
|
| + LOG(ERROR) << "Value must be Type::DICTIONARY";
|
| return false;
|
| }
|
| const base::DictionaryValue* dictionary =
|
|
|