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

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

Issue 2546473005: [DevTools] Remove unnecessary checks for project types. (Closed)
Patch Set: 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/CallStackSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
index 12838fd3346075c9ed6fa24781abaf44bb2b8731..00bba8fad4fb8a1b8a86c4aa894d91f9790c576f 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
@@ -242,8 +242,6 @@ Sources.CallStackSidebarPane = class extends UI.SimpleView {
var binding = Persistence.persistence.binding(uiSourceCode);
if (binding)
uiSourceCode = binding.network;
- if (uiSourceCode.project().type() === Workspace.projectTypes.FileSystem)
lushnikov 2016/12/02 01:31:32 let's bring this back for now
dgozman 2016/12/02 02:33:00 Done.
- return;
var canBlackbox = Bindings.blackboxManager.canBlackboxUISourceCode(uiSourceCode);
var isBlackboxed = Bindings.blackboxManager.isBlackboxedUISourceCode(uiSourceCode);
var isContentScript = uiSourceCode.project().type() === Workspace.projectTypes.ContentScripts;

Powered by Google App Engine
This is Rietveld 408576698