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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.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_lazy/ViewportDataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js
index 68d6b83be8ce8a61407da94806195f12787ec808..cc19cd35f37ab84f697f338bb84772b0ab315d43 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js
@@ -43,11 +43,11 @@ WebInspector.ViewportDataGrid = function(columnsArray, editCallback, deleteCallb
this._lastScrollTop = 0;
this.setRootNode(new WebInspector.ViewportDataGridNode());
-}
+};
WebInspector.ViewportDataGrid.Events = {
ViewportCalculated: Symbol("ViewportCalculated")
-}
+};
WebInspector.ViewportDataGrid.prototype = {
/**
@@ -292,7 +292,7 @@ WebInspector.ViewportDataGrid.prototype = {
},
__proto__: WebInspector.DataGrid.prototype
-}
+};
/**
* @constructor
@@ -305,7 +305,7 @@ WebInspector.ViewportDataGridNode = function(data, hasChildren)
WebInspector.DataGridNode.call(this, data, hasChildren);
/** @type {boolean} */
this._stale = false;
-}
+};
WebInspector.ViewportDataGridNode.prototype = {
/**
@@ -482,4 +482,4 @@ WebInspector.ViewportDataGridNode.prototype = {
},
__proto__: WebInspector.DataGridNode.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698