Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js

Issue 2679483002: DevTools: Create extensible QuickOpen control (Closed)
Patch Set: delegates again Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 735c0da494a7bae09eacf94970f0e9491d70f397..818169d52384d0cf5cbfa2faa06e032393d185e3 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;
}

Powered by Google App Engine
This is Rietveld 408576698