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

Unified Diff: chrome/browser/resources/print_preview/data/ticket_items/ticket_item.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/ticket_items/ticket_item.js
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
index f2ea4dc80a0ffc9f544f37080b1b8823fd9b24f9..ff31b24ad026cf1407b1e2adabefc9f3c4b2b905 100644
--- a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
+++ b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
@@ -190,7 +190,8 @@ cr.define('print_preview.ticket_items', function() {
*/
getSelectedDestInternal: function() {
return this.destinationStore_ ?
- this.destinationStore_.selectedDestination : null;
+ this.destinationStore_.selectedDestination :
+ null;
},
/**
@@ -227,21 +228,18 @@ cr.define('print_preview.ticket_items', function() {
if (this.destinationStore_) {
this.tracker_.add(
this.destinationStore_,
- print_preview.DestinationStore.EventType.
- SELECTED_DESTINATION_CAPABILITIES_READY,
+ print_preview.DestinationStore.EventType
+ .SELECTED_DESTINATION_CAPABILITIES_READY,
this.dispatchChangeEventInternal.bind(this));
}
if (this.documentInfo_) {
this.tracker_.add(
- this.documentInfo_,
- print_preview.DocumentInfo.EventType.CHANGE,
+ this.documentInfo_, print_preview.DocumentInfo.EventType.CHANGE,
this.dispatchChangeEventInternal.bind(this));
}
},
};
// Export
- return {
- TicketItem: TicketItem
- };
+ return {TicketItem: TicketItem};
});

Powered by Google App Engine
This is Rietveld 408576698