Chromium Code Reviews| Index: chrome/test/data/webui/print_preview/native_layer_stub.js |
| diff --git a/chrome/test/data/webui/print_preview/native_layer_stub.js b/chrome/test/data/webui/print_preview/native_layer_stub.js |
| index 23e223ee290476340d88b4fde885a62d231159b4..d857de1078ef9d667c720da40fc4c00329153adc 100644 |
| --- a/chrome/test/data/webui/print_preview/native_layer_stub.js |
| +++ b/chrome/test/data/webui/print_preview/native_layer_stub.js |
| @@ -98,8 +98,14 @@ cr.define('print_preview', function() { |
| }, |
| /** @override */ |
| - print: function() { |
| - this.methodCalled('print'); |
| + print: function( |
| + destination, printTicketStore, cloudPrintInterface, documentInfo) { |
| + this.methodCalled('print', { |
| + destination: destination, |
| + printTicketStore: printTicketStore, |
| + cloudPrintInterface: cloudPrintInterface, |
| + documentInfo: documentInfo |
|
dpapad
2017/06/28 01:28:34
Per styleguide, always use a trailing comma when t
rbpotter
2017/06/28 02:36:27
Done.
|
| + }); |
| return Promise.resolve(); |
| }, |