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/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "base/tuple.h" | 13 #include "base/tuple.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/media_galleries/iphoto_library.h" | 16 #include "chrome/common/media_galleries/iphoto_library.h" |
17 #include "chrome/common/media_galleries/itunes_library.h" | 17 #include "chrome/common/media_galleries/itunes_library.h" |
18 #include "chrome/common/media_galleries/metadata_types.h" | 18 #include "chrome/common/media_galleries/metadata_types.h" |
19 #include "chrome/common/media_galleries/picasa_types.h" | 19 #include "chrome/common/media_galleries/picasa_types.h" |
20 #include "chrome/common/safe_browsing/zip_analyzer.h" | 20 #include "chrome/common/safe_browsing/zip_analyzer.h" |
21 #include "ipc/ipc_message_macros.h" | 21 #include "ipc/ipc_message_macros.h" |
22 #include "ipc/ipc_platform_file.h" | 22 #include "ipc/ipc_platform_file.h" |
23 #include "third_party/skia/include/core/SkBitmap.h" | 23 #include "third_party/skia/include/core/SkBitmap.h" |
| 24 #include "ui/gfx/ipc/gfx_param_traits.h" |
24 | 25 |
25 #define IPC_MESSAGE_START ChromeUtilityMsgStart | 26 #define IPC_MESSAGE_START ChromeUtilityMsgStart |
26 | 27 |
27 #ifndef CHROME_COMMON_CHROME_UTILITY_MESSAGES_H_ | 28 #ifndef CHROME_COMMON_CHROME_UTILITY_MESSAGES_H_ |
28 #define CHROME_COMMON_CHROME_UTILITY_MESSAGES_H_ | 29 #define CHROME_COMMON_CHROME_UTILITY_MESSAGES_H_ |
29 | 30 |
30 typedef std::vector<Tuple2<SkBitmap, base::FilePath> > DecodedImages; | 31 typedef std::vector<Tuple2<SkBitmap, base::FilePath> > DecodedImages; |
31 | 32 |
32 #endif // CHROME_COMMON_CHROME_UTILITY_MESSAGES_H_ | 33 #endif // CHROME_COMMON_CHROME_UTILITY_MESSAGES_H_ |
33 | 34 |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, | 399 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, |
399 std::string /* ssid */, | 400 std::string /* ssid */, |
400 std::vector<uint8> /* public_key */) | 401 std::vector<uint8> /* public_key */) |
401 | 402 |
402 // Reply after getting WiFi credentials from the system and encrypting them with | 403 // Reply after getting WiFi credentials from the system and encrypting them with |
403 // caller's public key. |success| is false if error occurred. | 404 // caller's public key. |success| is false if error occurred. |
404 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, | 405 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, |
405 std::vector<uint8> /* encrypted_key_data */, | 406 std::vector<uint8> /* encrypted_key_data */, |
406 bool /* success */) | 407 bool /* success */) |
407 #endif // defined(OS_WIN) | 408 #endif // defined(OS_WIN) |
OLD | NEW |