Index: Source/devtools/front_end/timeline/TimelineUIUtils.js |
diff --git a/Source/devtools/front_end/timeline/TimelineUIUtils.js b/Source/devtools/front_end/timeline/TimelineUIUtils.js |
index d35c4ce80958fea33c2e1b31bce3a10161d07a9a..6f4e462fb609c5a19bb8eac0bfc92198ceb1e6a8 100644 |
--- a/Source/devtools/front_end/timeline/TimelineUIUtils.js |
+++ b/Source/devtools/front_end/timeline/TimelineUIUtils.js |
@@ -362,7 +362,7 @@ WebInspector.TimelineUIUtils.createStyleRuleForCategory = function(category) |
* @param {!Array.<number>} quad |
* @return {number} |
*/ |
-WebInspector.TimelineUIUtils._quadWidth = function(quad) |
+WebInspector.TimelineUIUtils.quadWidth = function(quad) |
{ |
return Math.round(Math.sqrt(Math.pow(quad[0] - quad[2], 2) + Math.pow(quad[1] - quad[3], 2))); |
} |
@@ -371,7 +371,7 @@ WebInspector.TimelineUIUtils._quadWidth = function(quad) |
* @param {!Array.<number>} quad |
* @return {number} |
*/ |
-WebInspector.TimelineUIUtils._quadHeight = function(quad) |
+WebInspector.TimelineUIUtils.quadHeight = function(quad) |
{ |
return Math.round(Math.sqrt(Math.pow(quad[0] - quad[6], 2) + Math.pow(quad[1] - quad[7], 2))); |
} |