| Index: chrome/browser/resources/print_preview/search/recent_destination_list.js
|
| diff --git a/chrome/browser/resources/print_preview/search/recent_destination_list.js b/chrome/browser/resources/print_preview/search/recent_destination_list.js
|
| index f932082564a729b60f5849671257c83361441c27..9b64ac3c2aadc0cdc5968dcd2df5fd1879e65601 100644
|
| --- a/chrome/browser/resources/print_preview/search/recent_destination_list.js
|
| +++ b/chrome/browser/resources/print_preview/search/recent_destination_list.js
|
| @@ -15,11 +15,8 @@ cr.define('print_preview', function() {
|
| */
|
| function RecentDestinationList(eventTarget) {
|
| print_preview.DestinationList.call(
|
| - this,
|
| - eventTarget,
|
| - loadTimeData.getString('recentDestinationsTitle'),
|
| - null /*actionLinkLabel*/,
|
| - true /*opt_showAll*/);
|
| + this, eventTarget, loadTimeData.getString('recentDestinationsTitle'),
|
| + null /*actionLinkLabel*/, true /*opt_showAll*/);
|
| };
|
|
|
| RecentDestinationList.prototype = {
|
| @@ -32,7 +29,5 @@ cr.define('print_preview', function() {
|
| }
|
| };
|
|
|
| - return {
|
| - RecentDestinationList: RecentDestinationList
|
| - };
|
| + return {RecentDestinationList: RecentDestinationList};
|
| });
|
|
|