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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/spannable.js

Issue 2909503003: WebUI: Enable ESLint rule for missing semicolons. (Closed)
Patch Set: Undo local_ntp changes from this CL. Created 3 years, 7 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: chrome/browser/resources/chromeos/chromevox/common/spannable.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/spannable.js b/chrome/browser/resources/chromeos/chromevox/common/spannable.js
index 64c96564c323e8f1b96385deaf69c4653d2582d0..a27562107a92750646f47f04a20ac3c23fe4e622 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/spannable.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/spannable.js
@@ -428,7 +428,7 @@ var serializableSpansByConstructor = new Map();
function spanInstanceOf(constructor) {
return function(span) {
return span.value instanceof constructor;
- }
+ };
}
/**
@@ -438,7 +438,7 @@ function spanInstanceOf(constructor) {
function spanCoversPosition(position) {
return function(span) {
return span.start <= position && position < span.end;
- }
+ };
}
/**
@@ -448,7 +448,7 @@ function spanCoversPosition(position) {
function spanValueIs(value) {
return function(span) {
return span.value === value;
- }
+ };
}
/**

Powered by Google App Engine
This is Rietveld 408576698