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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js

Issue 1907263002: DevTools: Fix all outstanding JavaScript style issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove yoda disable. fix throw parens Created 4 years, 8 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 5a867b894bf0f15183188babea1282b194666b9b..d03cecd41efe1c3b0588e224e54e5ae0fca702d0 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
@@ -422,7 +422,7 @@ WebInspector.ProfileDataGridTree.prototype = {
var matcher = createPlainTextSearchRegex(query, "i");
- function matchesQuery(/*ProfileDataGridNode*/ profileDataGridNode)
+ function matchesQuery(/** @ProfileDataGridNode */ profileDataGridNode)
{
delete profileDataGridNode._searchMatchedSelfColumn;
delete profileDataGridNode._searchMatchedTotalColumn;
@@ -646,4 +646,4 @@ WebInspector.ProfileDataGridNode.Formatter.prototype = {
* @return {!Element}
*/
linkifyNode: function(node) { }
-}
+}

Powered by Google App Engine
This is Rietveld 408576698