| Index: chrome/browser/resources/print_preview/search/destination_list_item.js
|
| diff --git a/chrome/browser/resources/print_preview/search/destination_list_item.js b/chrome/browser/resources/print_preview/search/destination_list_item.js
|
| index 9f843ee0288191b2626bbc01bcff4b65a18c8575..151dbb279340fdebf9c47365724bec519e5df318 100644
|
| --- a/chrome/browser/resources/print_preview/search/destination_list_item.js
|
| +++ b/chrome/browser/resources/print_preview/search/destination_list_item.js
|
| @@ -11,11 +11,11 @@ cr.define('print_preview', function() {
|
| * events to.
|
| * @param {!print_preview.Destination} destination Destination data object to
|
| * render.
|
| - * @param {RegExp} query Active filter query.
|
| + * @param {RegExp=} opt_query Active filter query.
|
| * @constructor
|
| * @extends {print_preview.Component}
|
| */
|
| - function DestinationListItem(eventTarget, destination, query) {
|
| + function DestinationListItem(eventTarget, destination, opt_query) {
|
| print_preview.Component.call(this);
|
|
|
| /**
|
| @@ -37,7 +37,7 @@ cr.define('print_preview', function() {
|
| * @type {RegExp}
|
| * @private
|
| */
|
| - this.query_ = query;
|
| + this.query_ = opt_query || null;
|
|
|
| /**
|
| * FedEx terms-of-service widget or {@code null} if this list item does not
|
|
|