Chromium Code Reviews| Index: chrome/browser/resources/print_preview/data/ticket_items/landscape.js |
| diff --git a/chrome/browser/resources/print_preview/data/ticket_items/landscape.js b/chrome/browser/resources/print_preview/data/ticket_items/landscape.js |
| index 2cae4abd8c44cd6edb3aecef73b1a7ecf79cbe79..ab9a178e8bc65503917bf6c277cf5c7bfef1a8db 100644 |
| --- a/chrome/browser/resources/print_preview/data/ticket_items/landscape.js |
| +++ b/chrome/browser/resources/print_preview/data/ticket_items/landscape.js |
| @@ -23,11 +23,11 @@ cr.define('print_preview.ticket_items', function() { |
| * @extends {print_preview.ticket_items.TicketItem} |
| */ |
| function Landscape(appState, destinationStore, documentInfo, marginsType, |
| - customMargins) { |
| + customMargins) { |
|
dpapad
2017/05/05 17:32:51
Indentation was correct before, but not anymore.
rbpotter
2017/05/05 18:25:46
Done.
|
| print_preview.ticket_items.TicketItem.call( |
| this, |
| appState, |
| - print_preview.AppState.Field.IS_LANDSCAPE_ENABLED, |
| + print_preview.AppStateField.IS_LANDSCAPE_ENABLED, |
| destinationStore, |
| documentInfo); |
| @@ -44,7 +44,7 @@ cr.define('print_preview.ticket_items', function() { |
| * @private |
| */ |
| this.customMargins_ = customMargins; |
| - }; |
| + } |
| Landscape.prototype = { |
| __proto__: print_preview.ticket_items.TicketItem.prototype, |