| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 cr.define('print_preview.ticket_items', function() { | 5 cr.define('print_preview.ticket_items', function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * Rasterize ticket item whose value is a {@code boolean} that indicates | 9 * Rasterize ticket item whose value is a {@code boolean} that indicates |
| 10 * whether the PDF document should be rendered as images. | 10 * whether the PDF document should be rendered as images. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 return false; | 37 return false; |
| 38 }, | 38 }, |
| 39 | 39 |
| 40 /** @override */ | 40 /** @override */ |
| 41 getCapabilityNotAvailableValueInternal: function() { | 41 getCapabilityNotAvailableValueInternal: function() { |
| 42 return this.getDefaultValueInternal(); | 42 return this.getDefaultValueInternal(); |
| 43 } | 43 } |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 // Export | 46 // Export |
| 47 return { | 47 return {Rasterize: Rasterize}; |
| 48 Rasterize: Rasterize | |
| 49 }; | |
| 50 }); | 48 }); |
| OLD | NEW |