| Index: third_party/WebKit/Source/devtools/front_end/resources/ApplicationCacheItemsView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ApplicationCacheItemsView.js b/third_party/WebKit/Source/devtools/front_end/resources/ApplicationCacheItemsView.js
|
| index 9b3203e27c829453ed6a7db43ead987a91a1049a..1a6e6011c797d4b833b6cdb442f0c58d0d5c733f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/ApplicationCacheItemsView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/ApplicationCacheItemsView.js
|
| @@ -25,11 +25,11 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.VBoxWithToolbarItems}
|
| + * @extends {WebInspector.View}
|
| */
|
| WebInspector.ApplicationCacheItemsView = function(model, frameId)
|
| {
|
| - WebInspector.VBoxWithToolbarItems.call(this);
|
| + WebInspector.View.call(this, WebInspector.UIString("AppCache"));
|
|
|
| this._model = model;
|
|
|
| @@ -258,6 +258,6 @@ WebInspector.ApplicationCacheItemsView.prototype = {
|
| // this._update();
|
| },
|
|
|
| - __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| + __proto__: WebInspector.View.prototype
|
| }
|
|
|
|
|