| 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 b89bedaae7aa166f3d4de7a44f21cb4ead21f7b3..10c2d5008054f5689a86bdc28bf5239663e0daa8 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -998,10 +998,6 @@ Sources.SourcesPanel = class extends UI.Panel {
|
| this.showUILocation(uiLocation);
|
| }
|
|
|
| - showGoToSourceDialog() {
|
| - this._sourcesView.showOpenResourceDialog();
|
| - }
|
| -
|
| _revealNavigatorSidebar() {
|
| this._setAsCurrentPanel();
|
| this.editorView.showBoth(true);
|
| @@ -1225,9 +1221,6 @@ Sources.SourcesPanel.RevealingActionDelegate = class {
|
| case 'debugger.toggle-pause':
|
| panel._togglePause();
|
| return true;
|
| - case 'sources.go-to-source':
|
| - panel.showGoToSourceDialog();
|
| - return true;
|
| }
|
| return false;
|
| }
|
|
|