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

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

Issue 2515763003: DevTools: use shorthand syntax in interface definitions. (Closed)
Patch Set: Created 4 years, 1 month 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 f44de68c11c5cb6e653c2ceceeec1fe344533285..9c50155657baf2ff13e215d9be221d2f939dfaee 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
@@ -637,18 +637,18 @@ Profiler.ProfileDataGridNode.Formatter.prototype = {
* @param {!Profiler.ProfileDataGridNode} node
* @return {string}
*/
- formatValue: function(value, node) {},
+ formatValue(value, node) {},
/**
* @param {number} value
* @param {!Profiler.ProfileDataGridNode} node
* @return {string}
*/
- formatPercent: function(value, node) {},
+ formatPercent(value, node) {},
/**
* @param {!Profiler.ProfileDataGridNode} node
* @return {?Element}
*/
- linkifyNode: function(node) {}
+ linkifyNode(node) {}
};

Powered by Google App Engine
This is Rietveld 408576698