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

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

Issue 2551233002: DevTools: show filesystem file by default (Closed)
Patch Set: nit Created 4 years 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 371c4e40a6dac754cbe96bdfe9668e5212b5cd39..9e93907ca897da2769d689a34b5c421b7b76b92b 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
@@ -387,10 +387,6 @@ Sources.SourcesPanel = class extends UI.Panel {
* @param {boolean=} skipReveal
*/
_revealInNavigator(uiSourceCode, skipReveal) {
- var binding = Persistence.persistence.binding(uiSourceCode);
- if (binding && binding.network === uiSourceCode)
- uiSourceCode = binding.fileSystem;
-
var extensions = self.runtime.extensions(Sources.NavigatorView);
Promise.all(extensions.map(extension => extension.instance())).then(filterNavigators.bind(this));

Powered by Google App Engine
This is Rietveld 408576698