| Index: third_party/WebKit/Source/devtools/front_end/source_frame/FontView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/FontView.js b/third_party/WebKit/Source/devtools/front_end/source_frame/FontView.js
|
| index 77f2c7f2d9220d1577cf5f75cf816f713e6b1f6e..053de694c5cca6e84e8de1ace8d90ccc4733e52d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/source_frame/FontView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/source_frame/FontView.js
|
| @@ -77,7 +77,7 @@ WebInspector.FontView.prototype = {
|
| var uniqueFontName = "WebInspectorFontPreview" + (++WebInspector.FontView._fontId);
|
|
|
| this.fontStyleElement = createElement("style");
|
| - this._contentProvider.requestContent(this._onFontContentLoaded.bind(this, uniqueFontName));
|
| + this._contentProvider.requestContent().then(this._onFontContentLoaded.bind(this, uniqueFontName));
|
| this.element.appendChild(this.fontStyleElement);
|
|
|
| var fontPreview = createElement("div");
|
|
|