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

Side by Side Diff: chrome/browser/resources/print_preview/data/ticket_items/copies.js

Issue 2862203002: Print Preview: Fix data/ errors (Closed)
Patch Set: Fix destination resolver Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 * Copies ticket item whose value is a {@code string} that indicates how many 9 * Copies ticket item whose value is a {@code string} that indicates how many
10 * copies of the document should be printed. The ticket item is backed by a 10 * copies of the document should be printed. The ticket item is backed by a
11 * string since the user can textually input the copies value. 11 * string since the user can textually input the copies value.
12 * @param {!print_preview.DestinationStore} destinationStore Destination store 12 * @param {!print_preview.DestinationStore} destinationStore Destination store
13 * used determine if a destination has the copies capability. 13 * used determine if a destination has the copies capability.
14 * @constructor 14 * @constructor
15 * @extends {print_preview.ticket_items.TicketItem} 15 * @extends {print_preview.ticket_items.TicketItem}
16 */ 16 */
17 function Copies(destinationStore) { 17 function Copies(destinationStore) {
18 print_preview.ticket_items.TicketItem.call( 18 print_preview.ticket_items.TicketItem.call(
19 this, null /*appState*/, null /*field*/, destinationStore); 19 this, null /*appState*/, null /*field*/, destinationStore);
20 }; 20 }
21 21
22 Copies.prototype = { 22 Copies.prototype = {
23 __proto__: print_preview.ticket_items.TicketItem.prototype, 23 __proto__: print_preview.ticket_items.TicketItem.prototype,
24 24
25 /** @override */ 25 /** @override */
26 wouldValueBeValid: function(value) { 26 wouldValueBeValid: function(value) {
27 return value != ''; 27 return value != '';
28 }, 28 },
29 29
30 /** @override */ 30 /** @override */
(...skipping 30 matching lines...) Expand all
61 dest.capabilities.printer.copies) || 61 dest.capabilities.printer.copies) ||
62 null; 62 null;
63 } 63 }
64 }; 64 };
65 65
66 // Export 66 // Export
67 return { 67 return {
68 Copies: Copies 68 Copies: Copies
69 }; 69 };
70 }); 70 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698