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

Unified Diff: runtime/observatory/lib/src/elements/allocation_profile.dart

Issue 2340883002: Observatory: Fix allocation profile CVS export. Fix heap snapshot in/out reference counts. (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/heap_snapshot.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/allocation_profile.dart
diff --git a/runtime/observatory/lib/src/elements/allocation_profile.dart b/runtime/observatory/lib/src/elements/allocation_profile.dart
index f126544760aa0d11434e82e3bda03d5dd4c856f9..1e4cb71cf88316034ab1dbc6b368196938be711f 100644
--- a/runtime/observatory/lib/src/elements/allocation_profile.dart
+++ b/runtime/observatory/lib/src/elements/allocation_profile.dart
@@ -547,7 +547,7 @@ class AllocationProfileElement extends HtmlElement implements Renderable {
'"(OLD) Current Size"',
'"(OLD) Current Instances"',
'Class'
- ].join(';') + '\n';
+ ].join(',') + '\n';
AnchorElement tl = document.createElement('a');
tl..attributes['href'] = 'data:text/plain;charset=utf-8,' +
Uri.encodeComponent(header +
@@ -572,7 +572,7 @@ class AllocationProfileElement extends HtmlElement implements Renderable {
_getOldCurrentSize(s),
_getOldCurrentInstances(s),
s.clazz.name
- ].join(';');
+ ].join(',');
}
static int _getAccumulatedSize(M.ClassHeapStats s) =>
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/heap_snapshot.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698