| Index: third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| index 2902078aa910efa5da064b3a25a568af65cb1327..267a90f88939be99a6d72d6401c2731aeec03058 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| @@ -5,13 +5,13 @@
|
| /**
|
| * @constructor
|
| * @implements {WebInspector.Searchable}
|
| - * @extends {WebInspector.VBoxWithToolbarItems}
|
| + * @extends {WebInspector.View}
|
| * @param {!WebInspector.ProfileDataGridNode.Formatter} nodeFormatter
|
| * @param {!Array<string>=} viewTypes
|
| */
|
| WebInspector.ProfileView = function(nodeFormatter, viewTypes)
|
| {
|
| - WebInspector.VBoxWithToolbarItems.call(this);
|
| + WebInspector.View.call(this, WebInspector.UIString("Profile"));
|
|
|
| this._searchableView = new WebInspector.SearchableView(this);
|
| this._searchableView.setPlaceholder(WebInspector.UIString("Find by cost (>50ms), name or file"));
|
| @@ -367,7 +367,7 @@ WebInspector.ProfileView.prototype = {
|
| this.refresh();
|
| },
|
|
|
| - __proto__: WebInspector.VBoxWithToolbarItems.prototype
|
| + __proto__: WebInspector.View.prototype
|
| }
|
|
|
| /**
|
|
|