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

Unified Diff: chrome/browser/resources/sync_file_system_internals/sync_service.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/sync_file_system_internals/sync_service.js
diff --git a/chrome/browser/resources/sync_file_system_internals/sync_service.js b/chrome/browser/resources/sync_file_system_internals/sync_service.js
index b5a2578ee3dcb0ab82f231285113efcca9d8bd02..299abc572593a3db0f3df82afac46f33b20bd8f6 100644
--- a/chrome/browser/resources/sync_file_system_internals/sync_service.js
+++ b/chrome/browser/resources/sync_file_system_internals/sync_service.js
@@ -23,7 +23,7 @@ function getServiceStatus() {
*/
SyncService.onGetServiceStatus = function(statusString) {
$('service-status').textContent = statusString;
-}
+};
/**
* Request Google Drive Notification Source. e.g. XMPP or polling.
@@ -38,7 +38,7 @@ function getNotificationSource() {
*/
SyncService.onGetNotificationSource = function(sourceString) {
$('notification-source').textContent = sourceString;
-}
+};
// Keeps track of the last log event seen so it's not reprinted.
var lastLogEventId = -1;
@@ -76,7 +76,7 @@ SyncService.onGetLog = function(logEntries) {
lastLogEventId = logEntry.id;
}
-}
+};
/**
* Get initial sync service values and set listeners to get updated values.

Powered by Google App Engine
This is Rietveld 408576698