Index: runtime/observatory/lib/src/elements/cpu_profile_table.dart |
diff --git a/runtime/observatory/lib/src/elements/cpu_profile_table.dart b/runtime/observatory/lib/src/elements/cpu_profile_table.dart |
index 88edbc6b2cb20a2994662bbc656a456d301ccd0a..104b19086c02247287fdc2bda0b1391e50b82fa3 100644 |
--- a/runtime/observatory/lib/src/elements/cpu_profile_table.dart |
+++ b/runtime/observatory/lib/src/elements/cpu_profile_table.dart |
@@ -443,7 +443,7 @@ class CpuProfileTableElement extends HtmlElement implements Renderable { |
static double _getExclusiveT(M.ProfileFunction f) => |
f.normalizedExclusiveTicks; |
static double _getInclusiveT(M.ProfileFunction f) => |
- f.normalizedExclusiveTicks; |
+ f.normalizedInclusiveTicks; |
double _getCalleeT(M.ProfileFunction f) => |
_selected.callees[f] / _selected.callees.values.reduce((a, b) => a + b); |
double _getCallerT(M.ProfileFunction f) => |