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

Unified Diff: tracing/tracing/ui/analysis/memory_dump_overview_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_overview_pane_test.html
diff --git a/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html b/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html
index 11d4bbdf7ee3af9f6ff858a165b570c0dfed346e..20c39f9534847857a5d9599ef333e83d8fffcd58 100644
--- a/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html
+++ b/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html
@@ -168,9 +168,9 @@ tr.b.unittest.testSuite(function() {
var process = model.getOrCreateProcess(1);
fieldAndDumpMask.forEach(function(mask, i) {
var timestamp = 10 + i;
- var gmd = addGlobalMemoryDump(model, timestamp);
+ var gmd = addGlobalMemoryDump(model, {ts: timestamp});
if (mask & DUMP) {
- var pmd = addProcessMemoryDump(gmd, process, timestamp);
+ var pmd = addProcessMemoryDump(gmd, process, {ts: timestamp});
dumpCreatedCallback(pmd, mask);
}
});

Powered by Google App Engine
This is Rietveld 408576698