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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.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/profiler/TopDownProfileDataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js
index d14ebdefe86abf52a5632aa0594af4add83ac725..65694a1cc0fd5dbf5eda4918220077741d149047 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js
@@ -36,7 +36,7 @@ WebInspector.TopDownProfileDataGridNode = function(profileNode, owningTree)
WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, hasChildren);
this._remainingChildren = profileNode.children;
-}
+};
WebInspector.TopDownProfileDataGridNode.prototype = {
/**
@@ -48,7 +48,7 @@ WebInspector.TopDownProfileDataGridNode.prototype = {
},
__proto__: WebInspector.ProfileDataGridNode.prototype
-}
+};
/**
* @param {!WebInspector.TopDownProfileDataGridNode|!WebInspector.TopDownProfileDataGridTree} container
@@ -62,7 +62,7 @@ WebInspector.TopDownProfileDataGridNode._sharedPopulate = function(container)
container.appendChild(new WebInspector.TopDownProfileDataGridNode(children[i], /** @type {!WebInspector.TopDownProfileDataGridTree} */(container.tree)));
container._remainingChildren = null;
-}
+};
/**
* @param {!WebInspector.TopDownProfileDataGridNode|!WebInspector.TopDownProfileDataGridTree} container
@@ -85,7 +85,7 @@ WebInspector.TopDownProfileDataGridNode._excludeRecursively = function(container
if (child)
WebInspector.ProfileDataGridNode.merge(container, child, true);
-}
+};
/**
* @constructor
@@ -100,7 +100,7 @@ WebInspector.TopDownProfileDataGridTree = function(formatter, searchableView, ro
WebInspector.ProfileDataGridTree.call(this, formatter, searchableView, total);
this._remainingChildren = rootProfileNode.children;
WebInspector.ProfileDataGridNode.populate(this);
-}
+};
WebInspector.TopDownProfileDataGridTree.prototype = {
/**
@@ -153,4 +153,4 @@ WebInspector.TopDownProfileDataGridTree.prototype = {
},
__proto__: WebInspector.ProfileDataGridTree.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698