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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/ServiceWorkerCacheModel.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/sdk/ServiceWorkerCacheModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/ServiceWorkerCacheModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/ServiceWorkerCacheModel.js
index 683032f2a536a7195b12e4360377de921007e030..25edb06a6ff20368ba4cc070badc1cf6ddbf93fc 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/ServiceWorkerCacheModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/ServiceWorkerCacheModel.js
@@ -22,13 +22,13 @@ WebInspector.ServiceWorkerCacheModel = function(target, securityOriginManager)
/** @type {boolean} */
this._enabled = false;
-}
+};
/** @enum {symbol} */
WebInspector.ServiceWorkerCacheModel.Events = {
CacheAdded: Symbol("CacheAdded"),
CacheRemoved: Symbol("CacheRemoved")
-}
+};
WebInspector.ServiceWorkerCacheModel.prototype = {
enable: function()
@@ -279,7 +279,7 @@ WebInspector.ServiceWorkerCacheModel.prototype = {
},
__proto__: WebInspector.SDKModel.prototype
-}
+};
/**
* @constructor
@@ -290,7 +290,7 @@ WebInspector.ServiceWorkerCacheModel.Entry = function(request, response)
{
this.request = request;
this.response = response;
-}
+};
/**
* @constructor
@@ -303,7 +303,7 @@ WebInspector.ServiceWorkerCacheModel.Cache = function(securityOrigin, cacheName,
this.securityOrigin = securityOrigin;
this.cacheName = cacheName;
this.cacheId = cacheId;
-}
+};
WebInspector.ServiceWorkerCacheModel.Cache.prototype = {
/**
@@ -323,7 +323,7 @@ WebInspector.ServiceWorkerCacheModel.Cache.prototype = {
{
return this.securityOrigin + this.cacheName;
}
-}
+};
/**
* @param {!WebInspector.Target} target
@@ -337,5 +337,5 @@ WebInspector.ServiceWorkerCacheModel.fromTarget = function(target)
if (!instance)
instance = new WebInspector.ServiceWorkerCacheModel(target, WebInspector.SecurityOriginManager.fromTarget(target));
return instance;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698