| Index: third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js b/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
|
| index 9442063aabc26d17eea0d88c32a5e4a3dccbcc4e..127f624aafd5d07182f5c729d0063c8c2d47fd93 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
|
| @@ -259,7 +259,7 @@ WebInspector.TextSourceMap.prototype = {
|
| {
|
| var sourceContent = this._sourceContentByURL[sourceURL];
|
| if (sourceContent)
|
| - return new WebInspector.StaticContentProvider(sourceURL, contentType, Promise.resolve(sourceContent));
|
| + return WebInspector.StaticContentProvider.fromString(sourceURL, contentType, sourceContent);
|
| return new WebInspector.CompilerSourceMappingContentProvider(sourceURL, contentType);
|
| },
|
|
|
|
|