| Index: third_party/WebKit/Source/devtools/front_end/elements/PlatformFontsWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/PlatformFontsWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/PlatformFontsWidget.js
|
| index 92c35afa6a04d98dc1afbfeaf37abd51230f3c03..6b8dfbff8285aba3e3cd90ea37a9f4c0e04faa43 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/elements/PlatformFontsWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/PlatformFontsWidget.js
|
| @@ -46,7 +46,7 @@ WebInspector.PlatformFontsWidget = function(sharedModel)
|
| this.contentElement.appendChild(this._sectionTitle);
|
| this._sectionTitle.textContent = WebInspector.UIString("Rendered Fonts");
|
| this._fontStatsSection = this.contentElement.createChild("div", "stats-section");
|
| -}
|
| +};
|
|
|
| WebInspector.PlatformFontsWidget.prototype = {
|
| /**
|
| @@ -62,7 +62,7 @@ WebInspector.PlatformFontsWidget.prototype = {
|
| return Promise.resolve();
|
|
|
| return cssModel.platformFontsPromise(node.id)
|
| - .then(this._refreshUI.bind(this, node))
|
| + .then(this._refreshUI.bind(this, node));
|
| },
|
|
|
| /**
|
| @@ -103,4 +103,4 @@ WebInspector.PlatformFontsWidget.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.ThrottledWidget.prototype
|
| -}
|
| +};
|
|
|