| Index: third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| index 7397630d721247c39a2e6b45fe90dfaaee8b22f9..66afc6a1c2bbbb0eeaf860371cf6d23931ba59bd 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| @@ -57,8 +57,6 @@ WebInspector.TabbedEditorContainer = function(delegate, setting, placeholderText
|
|
|
| this._tabbedPane.setCloseableTabs(true);
|
| this._tabbedPane.setAllowTabReorder(true, true);
|
| - this._tabbedPane.insertBeforeTabStrip(createElementWithClass("div", "sources-editor-tabstrip-left"));
|
| - this._tabbedPane.appendAfterTabStrip(createElementWithClass("div", "sources-editor-tabstrip-right"));
|
|
|
| this._tabbedPane.addEventListener(WebInspector.TabbedPane.Events.TabClosed, this._tabClosed, this);
|
| this._tabbedPane.addEventListener(WebInspector.TabbedPane.Events.TabSelected, this._tabSelected, this);
|
| @@ -106,6 +104,22 @@ WebInspector.TabbedEditorContainer.prototype = {
|
| },
|
|
|
| /**
|
| + * @return {!WebInspector.Toolbar}
|
| + */
|
| + leftToolbar: function()
|
| + {
|
| + return this._tabbedPane.leftToolbar();
|
| + },
|
| +
|
| + /**
|
| + * @return {!WebInspector.Toolbar}
|
| + */
|
| + rightToolbar: function()
|
| + {
|
| + return this._tabbedPane.rightToolbar();
|
| + },
|
| +
|
| + /**
|
| * @param {!Element} parentElement
|
| */
|
| show: function(parentElement)
|
|
|