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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.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/ui_lazy/TimelineGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js
index 26baa88c53a06d3fbb475d13c7c64fcb5e0d6b57..904fde4906f427632db86b33ff16df4cedea4c80 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js
@@ -262,30 +262,30 @@ UI.TimelineGrid.Calculator.prototype = {
/**
* @return {number}
*/
- paddingLeft: function() {},
+ paddingLeft() {},
/**
* @param {number} time
* @return {number}
*/
- computePosition: function(time) {},
+ computePosition(time) {},
/**
* @param {number} time
* @param {number=} precision
* @return {string}
*/
- formatValue: function(time, precision) {},
+ formatValue(time, precision) {},
/** @return {number} */
- minimumBoundary: function() {},
+ minimumBoundary() {},
/** @return {number} */
- zeroTime: function() {},
+ zeroTime() {},
/** @return {number} */
- maximumBoundary: function() {},
+ maximumBoundary() {},
/** @return {number} */
- boundarySpan: function() {}
+ boundarySpan() {}
};

Powered by Google App Engine
This is Rietveld 408576698