Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: chrome/browser/resources/print_preview/data/size.js

Issue 2617663002: WIP: run clang-format-js on lots of things (Closed)
Patch Set: merge Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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};
});

Powered by Google App Engine
This is Rietveld 408576698