| Index: third_party/WebKit/Source/devtools/front_end/common/Geometry.js
 | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/common/Geometry.js b/third_party/WebKit/Source/devtools/front_end/common/Geometry.js
 | 
| index 716b9ea93d543dffde67408f6b0704cf994d4c10..18359b83b10487ceeceb59233cf8876782459fcf 100644
 | 
| --- a/third_party/WebKit/Source/devtools/front_end/common/Geometry.js
 | 
| +++ b/third_party/WebKit/Source/devtools/front_end/common/Geometry.js
 | 
| @@ -90,6 +90,15 @@ WebInspector.Geometry.Point.prototype = {
 | 
|      },
 | 
|  
 | 
|      /**
 | 
| +     * @param {number} scalar
 | 
| +     * @return {!WebInspector.Geometry.Point}
 | 
| +     */
 | 
| +    scale: function(scalar)
 | 
| +    {
 | 
| +        return new WebInspector.Geometry.Point(this.x * scalar, this.y * scalar);
 | 
| +    },
 | 
| +
 | 
| +    /**
 | 
|       * @override
 | 
|       * @return {string}
 | 
|       */
 | 
| 
 |