OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include <string> | 5 #include <string> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/platform_file.h" | 8 #include "base/platform_file.h" |
9 #include "gfx/rect.h" | |
10 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
11 #include "printing/backend/print_backend.h" | 10 #include "printing/backend/print_backend.h" |
12 #include "printing/page_range.h" | 11 #include "printing/page_range.h" |
13 #include "third_party/skia/include/core/SkBitmap.h" | 12 #include "third_party/skia/include/core/SkBitmap.h" |
| 13 #include "ui/gfx/rect.h" |
14 | 14 |
15 #define IPC_MESSAGE_START UtilityMsgStart | 15 #define IPC_MESSAGE_START UtilityMsgStart |
16 | 16 |
17 class FilePath; | 17 class FilePath; |
18 class IndexedDBKey; | 18 class IndexedDBKey; |
19 class SerializedScriptValue; | 19 class SerializedScriptValue; |
20 class SkBitmap; | 20 class SkBitmap; |
21 | 21 |
22 //------------------------------------------------------------------------------ | 22 //------------------------------------------------------------------------------ |
23 // Utility process messages: | 23 // Utility process messages: |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 // capabilities and defaults. | 141 // capabilities and defaults. |
142 IPC_MESSAGE_CONTROL2(UtilityHostMsg_GetPrinterCapsAndDefaults_Succeeded, | 142 IPC_MESSAGE_CONTROL2(UtilityHostMsg_GetPrinterCapsAndDefaults_Succeeded, |
143 std::string /* printer name */, | 143 std::string /* printer name */, |
144 printing::PrinterCapsAndDefaults) | 144 printing::PrinterCapsAndDefaults) |
145 | 145 |
146 // Reply when the utility process has failed to obtain the printer | 146 // Reply when the utility process has failed to obtain the printer |
147 // capabilities and defaults. | 147 // capabilities and defaults. |
148 IPC_MESSAGE_CONTROL1(UtilityHostMsg_GetPrinterCapsAndDefaults_Failed, | 148 IPC_MESSAGE_CONTROL1(UtilityHostMsg_GetPrinterCapsAndDefaults_Failed, |
149 std::string /* printer name */) | 149 std::string /* printer name */) |
150 | 150 |
OLD | NEW |