| Index: chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
|
| diff --git a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
|
| index 1dffd201449cc44e9110c6a2b1a6aa395f7e1627..47537973770bd790749d6fe4329091796ecf71ad 100644
|
| --- a/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
|
| +++ b/chrome/browser/resources/print_preview/data/ticket_items/ticket_item.js
|
| @@ -38,7 +38,7 @@ cr.define('print_preview.ticket_items', function() {
|
| throw Error('Abstract method not overridden');
|
| },
|
|
|
| - /** @return {object} The value of the ticket item. */
|
| + /** @return {!Object} The value of the ticket item. */
|
| getValue: function() {
|
| if (this.isCapabilityAvailable()) {
|
| if (this.value_ == null) {
|
| @@ -64,13 +64,13 @@ cr.define('print_preview.ticket_items', function() {
|
| return this.wouldValueBeValid(this.value_);
|
| },
|
|
|
| - /** @param {object} Value to set as the value of the ticket item. */
|
| + /** @param {!Object} Value to set as the value of the ticket item. */
|
| updateValue: function(value) {
|
| this.value_ = value;
|
| },
|
|
|
| /**
|
| - * @return {object} Default value of the ticket item if no value was set by
|
| + * @return {!Object} Default value of the ticket item if no value was set by
|
| * the user.
|
| * @protected
|
| */
|
| @@ -79,7 +79,7 @@ cr.define('print_preview.ticket_items', function() {
|
| },
|
|
|
| /**
|
| - * @return {object} Default value of the ticket item if the capability is
|
| + * @return {!Object} Default value of the ticket item if the capability is
|
| * not available.
|
| * @protected
|
| */
|
|
|