| 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 3ff033108c25dea2497d31b1acf695a595943ec8..641d357201eb8f158d168a1d85edd6c3b9882829 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
|
| @@ -222,15 +222,7 @@ Sources.SourcesSearchScope = class {
|
| if (uiSourceCode.isDirty())
|
| contentLoaded.call(this, uiSourceCode, uiSourceCode.workingCopy());
|
| else
|
| - uiSourceCode.checkContentUpdated(true, contentUpdated.bind(this, uiSourceCode));
|
| - }
|
| -
|
| - /**
|
| - * @param {!Workspace.UISourceCode} uiSourceCode
|
| - * @this {Sources.SourcesSearchScope}
|
| - */
|
| - function contentUpdated(uiSourceCode) {
|
| - uiSourceCode.requestContent().then(contentLoaded.bind(this, uiSourceCode));
|
| + uiSourceCode.requestContent().then(contentLoaded.bind(this, uiSourceCode));
|
| }
|
|
|
| /**
|
|
|