Chromium Code Reviews| Index: chrome/browser/resources/print_preview/data/destination_store.js |
| diff --git a/chrome/browser/resources/print_preview/data/destination_store.js b/chrome/browser/resources/print_preview/data/destination_store.js |
| index 05c60f871da0efa41ac76155399390e5e8cfd374..bc55356e0587f8fe4b12b2ac9bb41e7fde933459 100644 |
| --- a/chrome/browser/resources/print_preview/data/destination_store.js |
| +++ b/chrome/browser/resources/print_preview/data/destination_store.js |
| @@ -913,23 +913,23 @@ cr.define('print_preview', function() { |
| this.cloudPrintInterface_ = cloudPrintInterface; |
| this.tracker_.add( |
| this.cloudPrintInterface_, |
| - cloudprint.CloudPrintInterface.EventType.SEARCH_DONE, |
| + cloudprint.CloudPrintInterfaceEventType.SEARCH_DONE, |
| this.onCloudPrintSearchDone_.bind(this)); |
| this.tracker_.add( |
| this.cloudPrintInterface_, |
| - cloudprint.CloudPrintInterface.EventType.SEARCH_FAILED, |
| + cloudprint.CloudPrintInterfaceEventType.SEARCH_FAILED, |
| this.onCloudPrintSearchDone_.bind(this)); |
| this.tracker_.add( |
| this.cloudPrintInterface_, |
| - cloudprint.CloudPrintInterface.EventType.PRINTER_DONE, |
| + cloudprint.CloudPrintInterfaceEventType.PRINTER_DONE, |
| this.onCloudPrintPrinterDone_.bind(this)); |
| this.tracker_.add( |
| this.cloudPrintInterface_, |
| - cloudprint.CloudPrintInterface.EventType.PRINTER_FAILED, |
| + cloudprint.CloudPrintInterfaceEventType.PRINTER_FAILED, |
| this.onCloudPrintPrinterFailed_.bind(this)); |
| this.tracker_.add( |
| this.cloudPrintInterface_, |
| - cloudprint.CloudPrintInterface.EventType.PROCESS_INVITE_DONE, |
| + cloudprint.CloudPrintInterfaceEventType.PROCESS_INVITE_DONE, |
| this.onCloudPrintProcessInviteDone_.bind(this)); |
| }, |
| @@ -1128,7 +1128,7 @@ cr.define('print_preview', function() { |
| if (origins.length == 0 || |
| (opt_origin && origins.indexOf(opt_origin) < 0)) { |
| this.cloudPrintInterface_.search( |
| - this.userInfo_.activeUser || '', opt_origin); |
| + this.userInfo_.activeUser, opt_origin); |
|
dpapad
2017/05/05 23:30:29
Is this equivalent to before? It seems that before
rbpotter
2017/05/06 00:02:19
Modified CloudPrintInterface.search so that it can
|
| cr.dispatchSimpleEvent( |
| this, DestinationStore.EventType.DESTINATION_SEARCH_STARTED); |
| } |