OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // IPC messages for printing. | 5 // IPC messages for printing. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintingFailed, | 375 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintingFailed, |
376 int /* document cookie */) | 376 int /* document cookie */) |
377 | 377 |
378 // Tell the browser print preview failed. | 378 // Tell the browser print preview failed. |
379 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewFailed, | 379 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewFailed, |
380 int /* document cookie */) | 380 int /* document cookie */) |
381 | 381 |
382 // Tell the browser print preview was cancelled. | 382 // Tell the browser print preview was cancelled. |
383 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewCancelled, | 383 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewCancelled, |
384 int /* document cookie */) | 384 int /* document cookie */) |
| 385 |
| 386 // Tell the browser print preview found the selected printer has invalid |
| 387 // settings (which typically caused by disconnected network printer or printer |
| 388 // driver is bogus). |
| 389 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewInvalidPrinterSettings, |
| 390 int /* document cookie */) |
OLD | NEW |