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