1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Multiply-included message file, so no include guard.
10 #include "ipc/ipc_message_macros.h"
11 #include "ipc/ipc_platform_file.h"
12 #include "printing/backend/print_backend.h"
13 #include "printing/page_range.h"
14 #include "printing/pdf_render_settings.h"
15 #include "printing/pwg_raster_settings.h"
17 #define IPC_MESSAGE_START ChromeUtilityPrintingMsgStart
19 // Preview and Cloud Print messages.
20 #if defined(ENABLE_PRINT_PREVIEW)
21 IPC_STRUCT_TRAITS_BEGIN(printing::PrinterCapsAndDefaults
)
22 IPC_STRUCT_TRAITS_MEMBER(printer_capabilities
)
23 IPC_STRUCT_TRAITS_MEMBER(caps_mime_type
)
24 IPC_STRUCT_TRAITS_MEMBER(printer_defaults
)
25 IPC_STRUCT_TRAITS_MEMBER(defaults_mime_type
)
26 IPC_STRUCT_TRAITS_END()
28 IPC_ENUM_TRAITS_MAX_VALUE(printing::ColorModel
, printing::PROCESSCOLORMODEL_RGB
)
30 IPC_STRUCT_TRAITS_BEGIN(printing::PrinterSemanticCapsAndDefaults::Paper
)
31 IPC_STRUCT_TRAITS_MEMBER(display_name
)
32 IPC_STRUCT_TRAITS_MEMBER(vendor_id
)
33 IPC_STRUCT_TRAITS_MEMBER(size_um
)
34 IPC_STRUCT_TRAITS_END()
36 IPC_STRUCT_TRAITS_BEGIN(printing::PrinterSemanticCapsAndDefaults
)
37 IPC_STRUCT_TRAITS_MEMBER(collate_capable
)
38 IPC_STRUCT_TRAITS_MEMBER(collate_default
)
39 IPC_STRUCT_TRAITS_MEMBER(copies_capable
)
40 IPC_STRUCT_TRAITS_MEMBER(duplex_capable
)
41 IPC_STRUCT_TRAITS_MEMBER(duplex_default
)
42 IPC_STRUCT_TRAITS_MEMBER(color_changeable
)
43 IPC_STRUCT_TRAITS_MEMBER(color_default
)
44 IPC_STRUCT_TRAITS_MEMBER(color_model
)
45 IPC_STRUCT_TRAITS_MEMBER(bw_model
)
46 IPC_STRUCT_TRAITS_MEMBER(papers
)
47 IPC_STRUCT_TRAITS_MEMBER(default_paper
)
48 IPC_STRUCT_TRAITS_MEMBER(dpis
)
49 IPC_STRUCT_TRAITS_MEMBER(default_dpi
)
50 IPC_STRUCT_TRAITS_END()
52 IPC_ENUM_TRAITS_MAX_VALUE(printing::PwgRasterTransformType
,
53 printing::TRANSFORM_TYPE_LAST
)
55 IPC_STRUCT_TRAITS_BEGIN(printing::PwgRasterSettings
)
56 IPC_STRUCT_TRAITS_MEMBER(odd_page_transform
)
57 IPC_STRUCT_TRAITS_MEMBER(rotate_all_pages
)
58 IPC_STRUCT_TRAITS_MEMBER(reverse_page_order
)
59 IPC_STRUCT_TRAITS_END()
61 //------------------------------------------------------------------------------
62 // Utility process messages:
63 // These are messages from the browser to the utility process.
65 // Tell the utility process to render the given PDF into a PWGRaster.
66 IPC_MESSAGE_CONTROL4(ChromeUtilityMsg_RenderPDFPagesToPWGRaster
,
67 IPC::PlatformFileForTransit
, /* Input PDF file */
68 printing::PdfRenderSettings
, /* PDF render settings */
69 // PWG transform settings.
70 printing::PwgRasterSettings
,
71 IPC::PlatformFileForTransit
/* Output PWG file */)
73 // Tells the utility process to get capabilities and defaults for the specified
74 // printer. Used on Windows to isolate the service process from printer driver
75 // crashes by executing this in a separate process. This does not run in a
77 IPC_MESSAGE_CONTROL1(ChromeUtilityMsg_GetPrinterCapsAndDefaults
,
78 std::string
/* printer name */)
80 // Tells the utility process to get capabilities and defaults for the specified
81 // printer. Used on Windows to isolate the service process from printer driver
82 // crashes by executing this in a separate process. This does not run in a
83 // sandbox. Returns result as printing::PrinterSemanticCapsAndDefaults.
84 IPC_MESSAGE_CONTROL1(ChromeUtilityMsg_GetPrinterSemanticCapsAndDefaults
,
85 std::string
/* printer name */)
86 #endif // ENABLE_PRINT_PREVIEW
88 // Windows uses messages for printing even without preview. crbug.com/170859
89 // Primary user of Windows without preview is CEF. crbug.com/417967
90 #if defined(ENABLE_PRINTING) && defined(OS_WIN)
91 // Tell the utility process to start rendering the given PDF into a metafile.
92 // Utility process would be alive until
93 // ChromeUtilityMsg_RenderPDFPagesToMetafiles_Stop message.
94 IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_RenderPDFPagesToMetafiles
,
95 IPC::PlatformFileForTransit
, /* input_file */
96 printing::PdfRenderSettings
/* settings */)
98 // Requests conversion of the next page.
99 IPC_MESSAGE_CONTROL2(ChromeUtilityMsg_RenderPDFPagesToMetafiles_GetPage
,
100 int /* page_number */,
101 IPC::PlatformFileForTransit
/* output_file */)
103 // Requests utility process to stop conversion and exit.
104 IPC_MESSAGE_CONTROL0(ChromeUtilityMsg_RenderPDFPagesToMetafiles_Stop
)
105 #endif // ENABLE_PRINTING && OS_WIN
107 //------------------------------------------------------------------------------
108 // Utility process host messages:
109 // These are messages from the utility process to the browser.
111 #if defined(ENABLE_PRINT_PREVIEW)
112 // Reply when the utility process has succeeded in rendering the PDF to PWG.
113 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_RenderPDFPagesToPWGRaster_Succeeded
)
115 // Reply when an error occurred rendering the PDF to PWG.
116 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_RenderPDFPagesToPWGRaster_Failed
)
118 // Reply when the utility process has succeeded in obtaining the printer
119 // capabilities and defaults.
120 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetPrinterCapsAndDefaults_Succeeded
,
121 std::string
/* printer name */,
122 printing::PrinterCapsAndDefaults
)
124 // Reply when the utility process has succeeded in obtaining the printer
125 // semantic capabilities and defaults.
126 IPC_MESSAGE_CONTROL2(
127 ChromeUtilityHostMsg_GetPrinterSemanticCapsAndDefaults_Succeeded
,
128 std::string
/* printer name */,
129 printing::PrinterSemanticCapsAndDefaults
)
131 // Reply when the utility process has failed to obtain the printer
132 // capabilities and defaults.
133 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_GetPrinterCapsAndDefaults_Failed
,
134 std::string
/* printer name */)
136 // Reply when the utility process has failed to obtain the printer
137 // semantic capabilities and defaults.
138 IPC_MESSAGE_CONTROL1(
139 ChromeUtilityHostMsg_GetPrinterSemanticCapsAndDefaults_Failed
,
140 std::string
/* printer name */)
141 #endif // ENABLE_PRINT_PREVIEW
143 #if defined(ENABLE_PRINTING) && defined(OS_WIN)
144 // Reply when the utility process loaded PDF. |page_count| is 0, if loading
146 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageCount
,
147 int /* page_count */)
149 // Reply when the utility process rendered the PDF page.
150 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageDone
,
152 float /* scale_factor */)
153 #endif // ENABLE_PRINTING && OS_WIN