| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
 | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
 | 
| index 030602f53d91557ec67d3c810f3d2016b71d33f6..b6f88160ef8b6e5ae2c2978b31884cee4e0270f5 100644
 | 
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
 | 
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
 | 
| @@ -253,7 +253,7 @@ Sources.SourcesView = class extends UI.VBox {
 | 
|     * @param {!Workspace.UISourceCode} uiSourceCode
 | 
|     */
 | 
|    _addUISourceCode(uiSourceCode) {
 | 
| -    if (uiSourceCode.isFromServiceProject())
 | 
| +    if (uiSourceCode.project().isServiceProject())
 | 
|        return;
 | 
|      this._editorContainer.addUISourceCode(uiSourceCode);
 | 
|    }
 | 
| 
 |