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. |