| 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 7e6171314701f73bbddf8671ec8476c3cd89cf8b..078ce7d7b1eb6f647626020ff81904169030349c 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};
|
| });
|
|
|