Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/PlatformFontsWidget.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
-}
+};

Powered by Google App Engine
This is Rietveld 408576698