Index: chrome/browser/resources/print_preview/previewarea/margin_control_container.js |
diff --git a/chrome/browser/resources/print_preview/previewarea/margin_control_container.js b/chrome/browser/resources/print_preview/previewarea/margin_control_container.js |
index 31085f6d80aaafaf8640ec71090ae289ebc68a0e..e16483f4c1f6787183fb1c24a42b9b00e89706ae 100644 |
--- a/chrome/browser/resources/print_preview/previewarea/margin_control_container.js |
+++ b/chrome/browser/resources/print_preview/previewarea/margin_control_container.js |
@@ -108,7 +108,7 @@ cr.define('print_preview', function() { |
* @private |
*/ |
this.clippingSize_ = null; |
- }; |
+ } |
/** |
* CSS classes used by the custom margins component. |
@@ -272,7 +272,7 @@ cr.define('print_preview', function() { |
/** |
* @param {string} value Value to parse to points. E.g. '3.40"' or '200mm'. |
- * @return {number} Value in points represented by the input value. |
+ * @return {?number} Value in points represented by the input value. |
* @private |
*/ |
parseValueToPts_: function(value) { |
@@ -371,7 +371,7 @@ cr.define('print_preview', function() { |
* controls. |
Dan Beam
2017/05/09 21:25:47
nit: @param
rbpotter
2017/05/09 22:32:14
Done.
|
* @private |
*/ |
- onMouseOver_: function() { |
+ onMouseOver_: function(event) { |
var fromElement = event.fromElement; |
while (fromElement != null) { |
if (fromElement == this.getElement()) { |