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