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" | |
13 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
14 #include "base/tuple.h" | 13 #include "base/tuple.h" |
15 #include "base/values.h" | 14 #include "base/values.h" |
16 #include "chrome/common/extensions/update_manifest.h" | 15 #include "chrome/common/extensions/update_manifest.h" |
17 #include "chrome/common/media_galleries/iphoto_library.h" | 16 #include "chrome/common/media_galleries/iphoto_library.h" |
18 #include "chrome/common/media_galleries/itunes_library.h" | 17 #include "chrome/common/media_galleries/itunes_library.h" |
19 #include "chrome/common/media_galleries/metadata_types.h" | 18 #include "chrome/common/media_galleries/metadata_types.h" |
20 #include "chrome/common/media_galleries/picasa_types.h" | 19 #include "chrome/common/media_galleries/picasa_types.h" |
21 #include "chrome/common/safe_browsing/zip_analyzer.h" | 20 #include "chrome/common/safe_browsing/zip_analyzer.h" |
22 #include "ipc/ipc_message_macros.h" | 21 #include "ipc/ipc_message_macros.h" |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, | 398 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, |
400 std::string /* ssid */, | 399 std::string /* ssid */, |
401 std::vector<uint8> /* public_key */) | 400 std::vector<uint8> /* public_key */) |
402 | 401 |
403 // Reply after getting WiFi credentials from the system and encrypting them with | 402 // Reply after getting WiFi credentials from the system and encrypting them with |
404 // caller's public key. |success| is false if error occurred. | 403 // caller's public key. |success| is false if error occurred. |
405 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, | 404 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, |
406 std::vector<uint8> /* encrypted_key_data */, | 405 std::vector<uint8> /* encrypted_key_data */, |
407 bool /* success */) | 406 bool /* success */) |
408 #endif // defined(OS_WIN) | 407 #endif // defined(OS_WIN) |
OLD | NEW |