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

Unified Diff: tracing/tracing/base/sorted_array_utils.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/base/sorted_array_utils.html
diff --git a/tracing/tracing/base/sorted_array_utils.html b/tracing/tracing/base/sorted_array_utils.html
index 3352f9487ad039785e7aac4c0300679640574eda..00d6518b675395f4892e1c5f78a0df7e92621ded 100644
--- a/tracing/tracing/base/sorted_array_utils.html
+++ b/tracing/tracing/base/sorted_array_utils.html
@@ -35,7 +35,8 @@ tr.exportTo('tr.b', function() {
var low = 0;
var high = ary.length - 1;
- var i, comparison;
+ var i;
+ var comparison;
var hitPos = -1;
while (low <= high) {
i = Math.floor((low + high) / 2);
« no previous file with comments | « tracing/tracing/base/running_statistics_test.html ('k') | tracing/tracing/base/unittest/interactive_test_runner.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698