OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/platform_file.h" | 12 #include "base/platform_file.h" |
13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "chrome/common/extensions/update_manifest.h" | 15 #include "chrome/common/extensions/update_manifest.h" |
16 #include "chrome/common/safe_browsing/zip_analyzer.h" | 16 #include "chrome/common/safe_browsing/zip_analyzer.h" |
17 #include "ipc/ipc_message_macros.h" | 17 #include "ipc/ipc_message_macros.h" |
18 #include "ipc/ipc_platform_file.h" | 18 #include "ipc/ipc_platform_file.h" |
19 #include "printing/backend/print_backend.h" | 19 #include "printing/backend/print_backend.h" |
20 #include "printing/page_range.h" | 20 #include "printing/page_range.h" |
21 #include "printing/pdf_render_settings.h" | 21 #include "printing/pdf_render_settings.h" |
22 #include "third_party/skia/include/core/SkBitmap.h" | 22 #include "third_party/skia/include/core/SkBitmap.h" |
23 | 23 |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_CreateZipFile_Failed) | 210 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_CreateZipFile_Failed) |
211 #endif // defined(OS_CHROMEOS) | 211 #endif // defined(OS_CHROMEOS) |
212 | 212 |
213 // Reply when the utility process has started. | 213 // Reply when the utility process has started. |
214 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_ProcessStarted) | 214 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_ProcessStarted) |
215 | 215 |
216 // Reply when a zip file has been analyzed for malicious download protection. | 216 // Reply when a zip file has been analyzed for malicious download protection. |
217 IPC_MESSAGE_CONTROL1( | 217 IPC_MESSAGE_CONTROL1( |
218 ChromeUtilityHostMsg_AnalyzeZipFileForDownloadProtection_Finished, | 218 ChromeUtilityHostMsg_AnalyzeZipFileForDownloadProtection_Finished, |
219 safe_browsing::zip_analyzer::Results) | 219 safe_browsing::zip_analyzer::Results) |
OLD | NEW |