OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 // Multiply-included message file, so no include guard. | 5 // Multiply-included message file, so no include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 142 |
143 #if defined(ENABLE_PRINTING) && defined(OS_WIN) | 143 #if defined(ENABLE_PRINTING) && defined(OS_WIN) |
144 // Reply when the utility process loaded PDF. |page_count| is 0, if loading | 144 // Reply when the utility process loaded PDF. |page_count| is 0, if loading |
145 // failed. | 145 // failed. |
146 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageCount, | 146 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageCount, |
147 int /* page_count */) | 147 int /* page_count */) |
148 | 148 |
149 // Reply when the utility process rendered the PDF page. | 149 // Reply when the utility process rendered the PDF page. |
150 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageDone, | 150 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageDone, |
151 bool /* success */, | 151 bool /* success */, |
152 double /* scale_factor */) | 152 float /* scale_factor */) |
153 #endif // ENABLE_PRINTING && OS_WIN | 153 #endif // ENABLE_PRINTING && OS_WIN |
OLD | NEW |