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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.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/ProfileDataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
index fd0bf750494b40baa2a0795c095c549683692fce..2254a397ea8bd88f80ef6fd1e4d01d61d39b8781 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
@@ -47,7 +47,7 @@ WebInspector.ProfileDataGridNode = function(profileNode, owningTree, hasChildren
this.functionName = WebInspector.beautifyFunctionName(profileNode.functionName);
this._deoptReason = profileNode.deoptReason || "";
this.url = profileNode.url;
-}
+};
WebInspector.ProfileDataGridNode.prototype = {
/**
@@ -259,7 +259,7 @@ WebInspector.ProfileDataGridNode.prototype = {
},
__proto__: WebInspector.DataGridNode.prototype
-}
+};
/**
* @param {!WebInspector.ProfileDataGridNode|!WebInspector.ProfileDataGridTree} container
@@ -296,7 +296,7 @@ WebInspector.ProfileDataGridNode.merge = function(container, child, shouldAbsorb
else
container.appendChild(orphanedChild);
}
-}
+};
/**
* @param {!WebInspector.ProfileDataGridNode|!WebInspector.ProfileDataGridTree} container
@@ -313,7 +313,7 @@ WebInspector.ProfileDataGridNode.populate = function(container)
if (currentComparator)
container.sort(currentComparator, true);
-}
+};
/**
* @constructor
@@ -331,7 +331,7 @@ WebInspector.ProfileDataGridTree = function(formatter, searchableView, total)
this.total = total;
this.lastComparator = null;
this.childrenByCallUID = new Map();
-}
+};
WebInspector.ProfileDataGridTree.prototype = {
get expanded()
@@ -584,7 +584,7 @@ WebInspector.ProfileDataGridTree.prototype = {
profileNode.revealAndSelect();
this._searchableView.updateCurrentMatchIndex(index);
}
-}
+};
WebInspector.ProfileDataGridTree.propertyComparators = [{}, {}];
@@ -626,12 +626,12 @@ WebInspector.ProfileDataGridTree.propertyComparator = function(property, isAscen
}
return comparator;
-}
+};
/**
* @interface
*/
-WebInspector.ProfileDataGridNode.Formatter = function() { }
+WebInspector.ProfileDataGridNode.Formatter = function() { };
WebInspector.ProfileDataGridNode.Formatter.prototype = {
/**
@@ -653,4 +653,4 @@ WebInspector.ProfileDataGridNode.Formatter.prototype = {
* @return {?Element}
*/
linkifyNode: function(node) { }
-}
+};

Powered by Google App Engine
This is Rietveld 408576698