| 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 2a57256aeea8637f289db21c317d24f65d0c53fb..9b3203e27c829453ed6a7db43ead987a91a1049a 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.VBox}
|
| + * @extends {WebInspector.VBoxWithToolbarItems}
|
| */
|
| WebInspector.ApplicationCacheItemsView = function(model, frameId)
|
| {
|
| - WebInspector.VBox.call(this);
|
| + WebInspector.VBoxWithToolbarItems.call(this);
|
|
|
| this._model = model;
|
|
|
| @@ -62,6 +62,7 @@ WebInspector.ApplicationCacheItemsView = function(model, frameId)
|
|
|
| WebInspector.ApplicationCacheItemsView.prototype = {
|
| /**
|
| + * @override
|
| * @return {!Array.<!WebInspector.ToolbarItem>}
|
| */
|
| toolbarItems: function()
|
| @@ -257,6 +258,6 @@ WebInspector.ApplicationCacheItemsView.prototype = {
|
| // this._update();
|
| },
|
|
|
| - __proto__: WebInspector.VBox.prototype
|
| + __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| }
|
|
|
|
|