| Index: third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| index cf37c6908f6b4a280c0fc50018b39e95c141d596..e37a631366d7b5ae1414308ab85c2f07b01e4df9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| @@ -281,10 +281,7 @@ Workspace.UISourceCode = class extends Common.Object {
|
| * @return {!Promise<?string>}
|
| */
|
| requestOriginalContent() {
|
| - var callback;
|
| - var promise = new Promise(fulfill => callback = fulfill);
|
| - this._project.requestFileContent(this, callback);
|
| - return promise;
|
| + return this._project.requestOriginalFileContent(this);
|
| }
|
|
|
| /**
|
|
|