| Index: chrome/browser/resources/print_preview/data/size.js
|
| diff --git a/chrome/browser/resources/print_preview/data/size.js b/chrome/browser/resources/print_preview/data/size.js
|
| index 7b434188ce46d62f7acfe4466fafc7874b7da435..ee187660671c14aaf2678b3972a4f95c21faaa20 100644
|
| --- a/chrome/browser/resources/print_preview/data/size.js
|
| +++ b/chrome/browser/resources/print_preview/data/size.js
|
| @@ -43,14 +43,11 @@ cr.define('print_preview', function() {
|
| * @return {boolean} Whether this size object is equal to another.
|
| */
|
| equals: function(other) {
|
| - return other != null &&
|
| - this.width_ == other.width_ &&
|
| + return other != null && this.width_ == other.width_ &&
|
| this.height_ == other.height_;
|
| }
|
| };
|
|
|
| // Export
|
| - return {
|
| - Size: Size
|
| - };
|
| + return {Size: Size};
|
| });
|
|
|