| Index: chrome/browser/printing/print_view_manager.h
|
| ===================================================================
|
| --- chrome/browser/printing/print_view_manager.h (revision 18804)
|
| +++ chrome/browser/printing/print_view_manager.h (working copy)
|
| @@ -77,6 +77,9 @@
|
| // disconnect from it.
|
| void DisconnectFromCurrentPrintJob();
|
|
|
| + // Notify that the printing is done.
|
| + void PrintingDone(bool success);
|
| +
|
| // Terminates the print job. Noop if no print job has been created. If
|
| // |cancel| is true, cancel it instead of waiting for the job to finish. Will
|
| // call ReleasePrintJob().
|
| @@ -113,6 +116,9 @@
|
| // called.
|
| bool waiting_to_print_;
|
|
|
| + // Indication of success of the print job.
|
| + bool printing_succeeded_;
|
| +
|
| // Running an inner message loop inside RenderAllMissingPagesNow(). This means
|
| // we are _blocking_ until all the necessary pages have been rendered or the
|
| // print settings are being loaded.
|
|
|