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; |
-} |
+}; |