blob: 826555318897ad267426bec4f983a1de250a78dd [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '../ui/elements.dart';
class CpuCallTree extends CoreElement {
CpuCallTree() : super('div', classes: 'ui-details-section') {
flex();
layoutVertical();
add(div(text: 'Call tree view coming soon', c: 'message'));
}
}