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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.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/sdk/ProfileTreeModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
index b8206f4e4d0e159a5fd14aacbc9ba1a4d0edfb64..d902882d9bd696d154468c379171975a623181cf 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
@@ -22,7 +22,7 @@ WebInspector.ProfileNode = function(callFrame)
this.parent = null;
/** @type {!Array<!WebInspector.ProfileNode>} */
this.children = [];
-}
+};
WebInspector.ProfileNode.prototype = {
/**
@@ -64,7 +64,7 @@ WebInspector.ProfileNode.prototype = {
{
return this.callFrame.columnNumber;
}
-}
+};
/**
* @constructor
@@ -75,7 +75,7 @@ WebInspector.ProfileTreeModel = function(root)
this.root = root;
this._assignDepthsAndParents();
this.total = this._calculateTotals(this.root);
-}
+};
WebInspector.ProfileTreeModel.prototype = {
_assignDepthsAndParents: function()
@@ -122,4 +122,4 @@ WebInspector.ProfileTreeModel.prototype = {
}
return root.total;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698