Index: chrome/browser/resources/print_preview/data/printable_area.js |
diff --git a/chrome/browser/resources/print_preview/data/printable_area.js b/chrome/browser/resources/print_preview/data/printable_area.js |
index 5ab0ab64469ce9c541d04221c369869e84d8b6b8..ae0f076096e056c83f25cab153a3f5d30e537e33 100644 |
--- a/chrome/browser/resources/print_preview/data/printable_area.js |
+++ b/chrome/browser/resources/print_preview/data/printable_area.js |
@@ -51,14 +51,11 @@ cr.define('print_preview', function() { |
* @return {boolean} Whether another printable area is equal to this one. |
*/ |
equals: function(other) { |
- return other != null && |
- this.origin_.equals(other.origin_) && |
+ return other != null && this.origin_.equals(other.origin_) && |
this.size_.equals(other.size_); |
} |
}; |
// Export |
- return { |
- PrintableArea: PrintableArea |
- }; |
+ return {PrintableArea: PrintableArea}; |
}); |