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

Unified Diff: chrome/browser/resources/print_preview/data/ticket_items/selection_only.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/selection_only.js
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/selection_only.js b/chrome/browser/resources/print_preview/data/ticket_items/selection_only.js
index 4002f6812683390d5accebc0827540435d20a721..f6bfaf73c62bc8933db932cdccdbc7cf0e1efa17 100644
--- a/chrome/browser/resources/print_preview/data/ticket_items/selection_only.js
+++ b/chrome/browser/resources/print_preview/data/ticket_items/selection_only.js
@@ -15,10 +15,7 @@ cr.define('print_preview.ticket_items', function() {
*/
function SelectionOnly(documentInfo) {
print_preview.ticket_items.TicketItem.call(
- this,
- null /*appState*/,
- null /*field*/,
- null /*destinationStore*/,
+ this, null /*appState*/, null /*field*/, null /*destinationStore*/,
documentInfo);
}
@@ -33,7 +30,7 @@ cr.define('print_preview.ticket_items', function() {
/** @override */
isCapabilityAvailable: function() {
return this.getDocumentInfoInternal().isModifiable &&
- this.getDocumentInfoInternal().hasSelection;
+ this.getDocumentInfoInternal().hasSelection;
},
/** @override */
@@ -48,7 +45,5 @@ cr.define('print_preview.ticket_items', function() {
};
// Export
- return {
- SelectionOnly: SelectionOnly
- };
+ return {SelectionOnly: SelectionOnly};
});

Powered by Google App Engine
This is Rietveld 408576698