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

Unified Diff: chrome/browser/resources/print_preview/data/ticket_items/collate.js

Issue 10108001: Refactor print preview web ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve conflicts Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/print_preview/data/ticket_items/collate.js
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/collate.js b/chrome/browser/resources/print_preview/data/ticket_items/collate.js
new file mode 100644
index 0000000000000000000000000000000000000000..10ddcf1a9ff95f41cd3cfb4cdeff6984468da08d
--- /dev/null
+++ b/chrome/browser/resources/print_preview/data/ticket_items/collate.js
@@ -0,0 +1,57 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+cr.define('print_preview.ticket_items', function() {
+ 'use strict';
+
+ /**
+ * Collate ticket item whose value is a {@code boolean} that indicates whether
+ * collation is enabled.
+ * @param {!print_preview.CapabilitiesHolder} capabilitiesHolder Capabilities
+ * holder used to determine the default collate value and if the collate
+ * capability is available.
+ * @constructor
+ * @extends {print_preview.ticket_items.TicketItem}
+ */
+ function Collate(capabilitiesHolder) {
+ print_preview.ticket_items.TicketItem.call(this);
+
+ /**
+ * Capabilities holder used to determine the default collate value and if
+ * the collate capability is available.
+ * @type {!print_preview.CapabilitiesHolder}
+ * @private
+ */
+ this.capabilitiesHolder_ = capabilitiesHolder;
+ };
+
+ Collate.prototype = {
+ __proto__: print_preview.ticket_items.TicketItem.prototype,
+
+ /** @override */
+ wouldValueBeValid: function(value) {
+ return true;
+ },
+
+ /** @override */
+ isCapabilityAvailable: function() {
+ return this.capabilitiesHolder_.get().hasCollateCapability;
+ },
+
+ /** @override */
+ getDefaultValueInternal: function() {
+ return this.capabilitiesHolder_.get().defaultIsCollateEnabled;
+ },
+
+ /** @override */
+ getCapabilityNotAvailableValueInternal: function() {
+ return false;
+ }
+ };
+
+ // Export
+ return {
+ Collate: Collate
+ };
+});
« no previous file with comments | « chrome/browser/resources/print_preview/data/size.js ('k') | chrome/browser/resources/print_preview/data/ticket_items/color.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698