| Index: runtime/vm/profiler.cc
|
| diff --git a/runtime/vm/profiler.cc b/runtime/vm/profiler.cc
|
| index b52c5b4863e612788fad10e65c1fb14866c887e4..ca80f9e1b729452a1f483d066beedfb7402014ed 100644
|
| --- a/runtime/vm/profiler.cc
|
| +++ b/runtime/vm/profiler.cc
|
| @@ -1373,7 +1373,8 @@ void Profiler::PrintToJSONStream(Isolate* isolate, JSONStream* stream,
|
| obj.AddProperty("samples", samples);
|
| obj.AddProperty("depth", static_cast<intptr_t>(FLAG_profile_depth));
|
| obj.AddProperty("period", static_cast<intptr_t>(FLAG_profile_period));
|
| - obj.AddProperty("time_delta_micros", builder.TimeDeltaMicros());
|
| + obj.AddProperty("timeSpan",
|
| + MicrosecondsToSeconds(builder.TimeDeltaMicros()));
|
| {
|
| JSONArray exclusive_trie(&obj, "exclusive_trie");
|
| CodeRegionTrieNode* root = build_trie.root();
|
|
|