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

Unified Diff: tracing/tracing/ui/analysis/generic_object_view.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
« no previous file with comments | « tracing/tracing/model/slice_group.html ('k') | tracing/tracing/ui/analysis/related_events_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/analysis/generic_object_view.html
diff --git a/tracing/tracing/ui/analysis/generic_object_view.html b/tracing/tracing/ui/analysis/generic_object_view.html
index 14797a9aa387f0b543fd545a22b87f1de12c647d..88bdbee8fd184b57bef2e8e3270c21e4e978c6d3 100644
--- a/tracing/tracing/ui/analysis/generic_object_view.html
+++ b/tracing/tracing/ui/analysis/generic_object_view.html
@@ -110,7 +110,10 @@ Polymer({
if (object.indexOf('\n') !== -1) {
var lines = object.split('\n');
lines.forEach(function(line, i) {
- var text, ioff, ll, ss;
+ var text;
+ var ioff;
+ var ll;
+ var ss;
if (i === 0) {
text = '"' + line;
ioff = 0;
« no previous file with comments | « tracing/tracing/model/slice_group.html ('k') | tracing/tracing/ui/analysis/related_events_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698