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

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

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 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 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};
});

Powered by Google App Engine
This is Rietveld 408576698