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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.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/ui/StaticViewportControl.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js b/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
index 13a339f7e35de6704ec5d475dd4d780437d1c279..515559ebc850f12c7cc41ed55a1438e11e2d9b8c 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
@@ -19,7 +19,7 @@ WebInspector.StaticViewportControl = function(provider)
this.element.addEventListener("scroll", this._update.bind(this), false);
this._itemCount = 0;
this._indexSymbol = Symbol("WebInspector.StaticViewportControl._indexSymbol");
-}
+};
WebInspector.StaticViewportControl.prototype = {
refresh: function()
@@ -138,14 +138,14 @@ WebInspector.StaticViewportControl.prototype = {
{
return this.element.offsetHeight;
}
-}
+};
/**
* @interface
*/
WebInspector.StaticViewportControl.Provider = function()
{
-}
+};
WebInspector.StaticViewportControl.Provider.prototype = {
/**
@@ -164,4 +164,4 @@ WebInspector.StaticViewportControl.Provider.prototype = {
* @return {?Element}
*/
itemElement: function(index) { return null; }
-}
+};

Powered by Google App Engine
This is Rietveld 408576698