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

Unified Diff: chrome/browser/resources/print_preview/data/coordinate2d.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/coordinate2d.js
diff --git a/chrome/browser/resources/print_preview/data/coordinate2d.js b/chrome/browser/resources/print_preview/data/coordinate2d.js
index 7352af778d98d48edd8b1d19d1456520e412af91..b336f7435041fbffb28aeb4bcac38264ab189dcb 100644
--- a/chrome/browser/resources/print_preview/data/coordinate2d.js
+++ b/chrome/browser/resources/print_preview/data/coordinate2d.js
@@ -63,14 +63,10 @@ cr.define('print_preview', function() {
* @return {boolean} Whether another point is equal to this one.
*/
equals: function(other) {
- return other != null &&
- this.x_ == other.x_ &&
- this.y_ == other.y_;
+ return other != null && this.x_ == other.x_ && this.y_ == other.y_;
}
};
// Export
- return {
- Coordinate2d: Coordinate2d
- };
+ return {Coordinate2d: Coordinate2d};
});

Powered by Google App Engine
This is Rietveld 408576698