| 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" |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 | 432 |
| 433 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_ParseMediaMetadata_Finished, | 433 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_ParseMediaMetadata_Finished, |
| 434 bool /* parse_success */, | 434 bool /* parse_success */, |
| 435 base::DictionaryValue /* metadata */) | 435 base::DictionaryValue /* metadata */) |
| 436 | 436 |
| 437 IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_RequestBlobBytes, | 437 IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_RequestBlobBytes, |
| 438 int64 /* request_id */, | 438 int64 /* request_id */, |
| 439 int64 /* start_byte */, | 439 int64 /* start_byte */, |
| 440 int64 /* length */) | 440 int64 /* length */) |
| 441 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 441 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
| 442 |
| 443 #if defined(OS_WIN) |
| 444 // Get plain-text WiFi credentials from the system (requires UAC privilege |
| 445 // elevation) and encrypt it with |public_key|. |
| 446 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, |
| 447 std::string /* ssid */, |
| 448 std::string /* public_key */) |
| 449 |
| 450 // Reply after gettng WiFi credentials from the system and encrypting it with |
| 451 // caller's public key. |error| is not empty if error occured.. |
| 452 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, |
| 453 std::string /* encrypted_key_data */, |
| 454 std::string /* error */) |
| 455 #endif // defined(OS_WIN) |
| OLD | NEW |