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

Unified Diff: tracing/tracing/model/slice_group.html

Issue 2432993005: Turn on eslint rule one-var and fix existing errors. (Closed)
Patch Set: Created 4 years, 2 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/model/slice_group.html
diff --git a/tracing/tracing/model/slice_group.html b/tracing/tracing/model/slice_group.html
index 8df967dd3396fb4877b27b2d42fbdf21f38dbdab..303f0633231fca06eada8279006006b7ff2459ab 100644
--- a/tracing/tracing/model/slice_group.html
+++ b/tracing/tracing/model/slice_group.html
@@ -637,7 +637,8 @@ tr.exportTo('tr.model', function() {
while (idxA < slicesA.length || idxB < slicesB.length) {
var sA = slicesA[idxA];
var sB = slicesB[idxB];
- var nextSlice, isFromB;
+ var nextSlice;
+ var isFromB;
if (sA === undefined || (sB !== undefined && sA.start > sB.start)) {
nextSlice = result.copySlice(sB);
« no previous file with comments | « tracing/tracing/model/global_memory_dump_test.html ('k') | tracing/tracing/ui/analysis/generic_object_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698