| Index: third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| index 87f968c4adf612d20acd4442239ed99b2cab6d9b..571f8f0030ac2154d786953bdc9356c15d42edc4 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| @@ -47,7 +47,8 @@ WebInspector.InspectorView = function()
|
| this._drawerSplitWidget.show(this.element);
|
|
|
| // Create drawer tabbed pane.
|
| - this._drawerTabbedLocation = WebInspector.viewManager.createTabbedLocation("drawer-view", true, true);
|
| + this._drawerTabbedLocation = WebInspector.viewManager.createTabbedLocation(this.showDrawer.bind(this), "drawer-view", true);
|
| + this._drawerTabbedLocation.enableMoreTabsButton();
|
| this._drawerTabbedPane = this._drawerTabbedLocation.tabbedPane();
|
| this._drawerTabbedPane.setMinimumSize(0, 27);
|
| var drawerToolbar = new WebInspector.Toolbar("drawer-close-toolbar");
|
| @@ -123,9 +124,8 @@ WebInspector.InspectorView.prototype = {
|
| * @param {string} locationName
|
| * @return {?WebInspector.ViewLocation}
|
| */
|
| - revealLocation: function(locationName)
|
| + resolveLocation: function(locationName)
|
| {
|
| - this.showDrawer();
|
| return this._drawerTabbedLocation;
|
| },
|
|
|
|
|