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

Unified Diff: chrome/browser/resources/print_preview/data/printable_area.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/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};
});

Powered by Google App Engine
This is Rietveld 408576698