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

Unified Diff: chrome/browser/resources/print_preview/data/printable_area.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/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 4dd49556a1c4e2fb8d49271e3f129c885e0ab31e..6cde30af0d7d9b6c1ccbbc03186ba21ad68e8a4a 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};
});
« no previous file with comments | « chrome/browser/resources/print_preview/data/print_ticket_store.js ('k') | chrome/browser/resources/print_preview/data/size.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698