| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 110584831c4d814b0692b41b3ab9597394e15ab0..756bdd6b5a7f5bbebb4da679142f93d32293c085 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -87,7 +87,7 @@ WebInspector.SourcesPanel = function(workspaceForTest)
|
| this.sidebarPanes.eventListenerBreakpoints = new WebInspector.EventListenerBreakpointsSidebarPane();
|
| this.sidebarPanes.objectEventListeners = new WebInspector.ObjectEventListenersSidebarPane();
|
|
|
| - this._lastSelectedTabSetting = WebInspector.settings.createLocalSetting("lastSelectedSourcesSidebarPaneTab", this.sidebarPanes.scopechain.title());
|
| + this._lastSelectedTabSetting = WebInspector.settings.createLocalSetting("lastSelectedSourcesSidebarPaneTab", WebInspector.UIString("Scope"));
|
|
|
| this._installDebuggerSidebarController();
|
|
|
| @@ -1104,7 +1104,7 @@ WebInspector.SourcesPanel.prototype = {
|
| this._extensionSidebarPanesContainer = sidebarPaneStack;
|
| this.sidebarPaneView = vbox;
|
|
|
| - this.sidebarPanes.scopechain.expand();
|
| + this.sidebarPanes.scopechain.expandPane();
|
| this.sidebarPanes.watchExpressions.expandIfNecessary();
|
| } else {
|
| var splitWidget = new WebInspector.SplitWidget(true, true, "sourcesPanelDebuggerSidebarSplitViewState", 0.5);
|
| @@ -1136,9 +1136,9 @@ WebInspector.SourcesPanel.prototype = {
|
| this._addExtensionSidebarPane(extensionSidebarPanes[i]);
|
|
|
| this._splitWidget.setSidebarWidget(this.sidebarPaneView);
|
| - this.sidebarPanes.threads.expand();
|
| - this.sidebarPanes.jsBreakpoints.expand();
|
| - this.sidebarPanes.callstack.expand();
|
| + this.sidebarPanes.threads.expandPane();
|
| + this.sidebarPanes.jsBreakpoints.expandPane();
|
| + this.sidebarPanes.callstack.expandPane();
|
| },
|
|
|
| /**
|
|
|