| Index: third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkerCacheViews.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkerCacheViews.js b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkerCacheViews.js
|
| index 288f7434347b6f0786d04918020b5dfc5c05ff6a..3acf838f63c8cc4fef6325e8254f2ae4a6745814 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkerCacheViews.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkerCacheViews.js
|
| @@ -4,13 +4,13 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.VBoxWithToolbarItems}
|
| + * @extends {WebInspector.View}
|
| * @param {!WebInspector.ServiceWorkerCacheModel} model
|
| * @param {!WebInspector.ServiceWorkerCacheModel.Cache} cache
|
| */
|
| WebInspector.ServiceWorkerCacheView = function(model, cache)
|
| {
|
| - WebInspector.VBoxWithToolbarItems.call(this);
|
| + WebInspector.View.call(this, WebInspector.UIString("Cache"));
|
| this.registerRequiredCSS("resources/serviceWorkerCacheViews.css");
|
|
|
| this._model = model;
|
| @@ -159,5 +159,5 @@ WebInspector.ServiceWorkerCacheView.prototype = {
|
| this._entries = [];
|
| },
|
|
|
| - __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| + __proto__: WebInspector.View.prototype
|
| }
|
|
|