| Index: chrome/browser/resources/print_preview/native_layer.js
|
| diff --git a/chrome/browser/resources/print_preview/native_layer.js b/chrome/browser/resources/print_preview/native_layer.js
|
| index d0bf01fb2f9a6d35257c2de847e9c90834ba0f49..9a524e0d4057e0719276883dbdd98a0f462db6b5 100644
|
| --- a/chrome/browser/resources/print_preview/native_layer.js
|
| +++ b/chrome/browser/resources/print_preview/native_layer.js
|
| @@ -260,17 +260,7 @@ cr.define('print_preview', function() {
|
| ticket['OpenPDFInPreview'] = true;
|
| }
|
|
|
| - var cloudTicket = null;
|
| - if (!destination.isLocal) {
|
| - assert(cloudPrintInterface != null,
|
| - 'Trying to print to a cloud destination but Google Cloud ' +
|
| - 'Print integration is disabled');
|
| - cloudTicket = cloudPrintInterface.createPrintTicket(
|
| - destination, printTicketStore);
|
| - cloudTicket = JSON.stringify(cloudTicket);
|
| - }
|
| -
|
| - chrome.send('print', [JSON.stringify(ticket), cloudTicket]);
|
| + chrome.send('print', [JSON.stringify(ticket)]);
|
| },
|
|
|
| /** Requests that the current pending print request be cancelled. */
|
|
|