| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| index edf528a606ddff1df244de67218a7d2a309874e5..a3f4e5a5927f8d6153ae19911405d17ca866ed9e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| @@ -178,7 +178,7 @@ WebInspector.SourcesSearchScope.prototype = {
|
| var uiSourceCode = project.uiSourceCodeForURL(files[i]);
|
| if (uiSourceCode) {
|
| var script = WebInspector.DefaultScriptMapping.scriptForUISourceCode(uiSourceCode);
|
| - if (script && (script.isInternalScript() || !script.isAnonymousScript()))
|
| + if (script && !script.isAnonymousScript())
|
| continue;
|
| uiSourceCodes.push(uiSourceCode);
|
| }
|
|
|