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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.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/BottomUpProfileDataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
index d1ba3779ff4b8f5e935dab8e23d0e7caae8f024a..5af70abc6b8e0f2d00be0169d722ff043cb469cb 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
@@ -39,7 +39,7 @@ WebInspector.BottomUpProfileDataGridNode = function(profileNode, owningTree)
{
WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, this._willHaveChildren(profileNode));
this._remainingNodeInfos = [];
-}
+};
WebInspector.BottomUpProfileDataGridNode.prototype = {
/**
@@ -124,7 +124,7 @@ WebInspector.BottomUpProfileDataGridNode.prototype = {
},
__proto__: WebInspector.ProfileDataGridNode.prototype
-}
+};
/**
* @param {!WebInspector.BottomUpProfileDataGridNode|!WebInspector.BottomUpProfileDataGridTree} container
@@ -170,7 +170,7 @@ WebInspector.BottomUpProfileDataGridNode._sharedPopulate = function(container)
}
delete container._remainingNodeInfos;
-}
+};
/**
* @constructor
@@ -240,7 +240,7 @@ WebInspector.BottomUpProfileDataGridTree = function(formatter, searchableView, r
WebInspector.ProfileDataGridNode.populate(this);
return this;
-}
+};
WebInspector.BottomUpProfileDataGridTree.prototype = {
/**
@@ -331,4 +331,4 @@ WebInspector.BottomUpProfileDataGridTree.prototype = {
},
__proto__: WebInspector.ProfileDataGridTree.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698