aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBingqian Liu <bql@google.com>2024-04-18 16:18:47 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-04-18 16:18:47 +0000
commit982f2f5f62026333509d127bac56fca27e97d883 (patch)
tree2ce09c9350e368f6e1599591156bcb76876b0f38
parent55751a1188258f5b4972642d28fcc6fcf8737ddf (diff)
parent930c7cc9c899e4b5cacfe1405e73a023c41da0b5 (diff)
downloadperfetto-982f2f5f62026333509d127bac56fca27e97d883.tar.gz
Merge "ui: show heap graph dominator tree default to true" into main
-rw-r--r--ui/src/common/flamegraph_util.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/common/flamegraph_util.ts b/ui/src/common/flamegraph_util.ts
index 0817ebf12..acf2ee827 100644
--- a/ui/src/common/flamegraph_util.ts
+++ b/ui/src/common/flamegraph_util.ts
@@ -24,7 +24,7 @@ const SHOW_HEAP_GRAPH_DOMINATOR_TREE_FLAG = featureFlags.register({
id: 'showHeapGraphDominatorTree',
name: 'Show heap graph dominator tree',
description: 'Show dominated size and objects tabs in Java heap graph view.',
- defaultValue: false,
+ defaultValue: true,
});
export function viewingOptions(profileType: ProfileType): Array<ViewingOption> {