| Index: chrome/browser/resources/print_preview/search/destination_search.js
|
| diff --git a/chrome/browser/resources/print_preview/search/destination_search.js b/chrome/browser/resources/print_preview/search/destination_search.js
|
| index cce4648ae05a7ff640942586e885f9f9c5e27c80..dd268b0b1e02e4ec3ccff51f759c92f63f164d81 100644
|
| --- a/chrome/browser/resources/print_preview/search/destination_search.js
|
| +++ b/chrome/browser/resources/print_preview/search/destination_search.js
|
| @@ -284,7 +284,8 @@ cr.define('print_preview', function() {
|
| if (destination.isRecent) {
|
| recentDestinations.push(destination);
|
| }
|
| - if (destination.isLocal) {
|
| + if (destination.isLocal ||
|
| + destination.origin == print_preview.Destination.Origin.DEVICE) {
|
| localDestinations.push(destination);
|
| } else {
|
| cloudDestinations.push(destination);
|
|
|