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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 | 383 |
384 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_ParseMediaMetadata_Finished, | 384 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_ParseMediaMetadata_Finished, |
385 bool /* parse_success */, | 385 bool /* parse_success */, |
386 base::DictionaryValue /* metadata */) | 386 base::DictionaryValue /* metadata */) |
387 | 387 |
388 IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_RequestBlobBytes, | 388 IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_RequestBlobBytes, |
389 int64 /* request_id */, | 389 int64 /* request_id */, |
390 int64 /* start_byte */, | 390 int64 /* start_byte */, |
391 int64 /* length */) | 391 int64 /* length */) |
392 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 392 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
| 393 |
| 394 #if defined(OS_WIN) |
| 395 // Get plain-text WiFi credentials from the system (requires UAC privilege |
| 396 // elevation) and encrypt it with |public_key|. |
| 397 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, |
| 398 std::string /* ssid */, |
| 399 std::string /* public_key */) |
| 400 |
| 401 // Reply after gettng WiFi credentials from the system and encrypting it with |
| 402 // caller's public key. |error| is not empty if error occured.. |
| 403 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, |
| 404 std::string /* encrypted_key_data */, |
| 405 std::string /* error */) |
| 406 #endif // defined(OS_WIN) |
| 407 |
OLD | NEW |