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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline 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: third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
index 0e145364b0d151265ea97e0bf8f64ddc48a08303..e45533ea44fd4afdd349afc8f2a10d71e834246f 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
@@ -32,7 +32,7 @@ WebInspector.ServiceWorkersView = function()
/** @type {!Map<!WebInspector.Target, !Array<!WebInspector.EventTarget.EventDescriptor>>}*/
this._eventListeners = new Map();
WebInspector.targetManager.observeTargets(this);
-}
+};
WebInspector.ServiceWorkersView.prototype = {
/**
@@ -133,7 +133,7 @@ WebInspector.ServiceWorkersView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -178,7 +178,7 @@ WebInspector.ServiceWorkersView.Section = function(manager, subTargetsManager, s
for (var error of registration.errors)
this._addError(error);
this._throttler = new WebInspector.Throttler(500);
-}
+};
WebInspector.ServiceWorkersView.Section.prototype = {
_scheduleUpdate: function()
@@ -433,4 +433,4 @@ WebInspector.ServiceWorkersView.Section.prototype = {
if (this._pendingUpdate)
clearTimeout(this._pendingUpdate);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698