| 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 f129a0f7bfb030796a6076ebec386e0740f544b6..e9a82235e1eec8d188500b9d026205926efac8ff 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};
|
| });
|
|
|