Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: runtime/observatory/lib/src/models/objects/heap_snapshot.dart

Issue 2266343002: Converted Observatory heap-snapshot element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed debug code Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 part of models;
6
7 abstract class HeapSnapshot {
8 DateTime get timestamp;
9 int get objects;
10 int get references;
11 int get size;
12 HeapSnapshotDominatorNode get dominatorTree;
13 Iterable<HeapSnapshotClassReferences> get classReferences;
14 }
15
16 abstract class HeapSnapshotDominatorNode {
17 int get shallowSize;
18 int get retainedSize;
19 Future<ObjectRef> get object;
20 Iterable<HeapSnapshotDominatorNode> get children;
21 }
22
23 abstract class HeapSnapshotClassReferences {
24 ClassRef get clazz;
25 int get instances;
26 int get shallowSize;
27 int get retainedSize;
28 Iterable<HeapSnapshotClassInbound> get inbounds;
29 Iterable<HeapSnapshotClassOutbound> get outbounds;
30 }
31
32 abstract class HeapSnapshotClassInbound {
33 ClassRef get source;
34 int get count;
35 int get shallowSize;
36 int get retainedSize;
37 }
38
39 abstract class HeapSnapshotClassOutbound {
40 ClassRef get target;
41 int get count;
42 int get shallowSize;
43 int get retainedSize;
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698