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

Unified Diff: tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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
Index: tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html
diff --git a/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html b/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html
index 41ca48431b3c683327cd3f408b68b3f6b5b7cc64..8ebdb7cac87f454174ab44c8508a55b183da6c8b 100644
--- a/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html
+++ b/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html
@@ -55,8 +55,8 @@ tr.b.unittest.testSuite(function() {
}
// First timestamp.
- var gmd1 = addGlobalMemoryDump(model, -10);
- var pmd1 = addProcessMemoryDump(gmd1, process, -11);
+ var gmd1 = addGlobalMemoryDump(model, {ts: -10});
+ var pmd1 = addProcessMemoryDump(gmd1, process, {ts: -11});
var hd1 = new HeapDump(pmd1, 'partition_alloc');
addHeapEntry(hd1, undefined /* sum over all traces */,
@@ -124,8 +124,8 @@ tr.b.unittest.testSuite(function() {
undefined /* sum over all types */, 307200 /* 300 KiB */, 300);
// Second timestamp.
- var gmd2 = addGlobalMemoryDump(model, 10);
- var pmd2 = addProcessMemoryDump(gmd2, process, 11);
+ var gmd2 = addGlobalMemoryDump(model, {ts: 10});
+ var pmd2 = addProcessMemoryDump(gmd2, process, {ts: 11});
var hd2 = new HeapDump(pmd2, 'partition_alloc');
addHeapEntry(hd2, undefined /* sum over all traces */,

Powered by Google App Engine
This is Rietveld 408576698