Chromium Code Reviews| Index: chrome/common/chrome_utility_messages.h |
| diff --git a/chrome/common/chrome_utility_messages.h b/chrome/common/chrome_utility_messages.h |
| index 9558e2067705b8bf9ea7544084194d80aa6f8c9b..0afcde8ab84fd540ff02c9a74e378d38caa8c7e7 100644 |
| --- a/chrome/common/chrome_utility_messages.h |
| +++ b/chrome/common/chrome_utility_messages.h |
| @@ -517,14 +517,13 @@ IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Progress, |
| #if defined(OS_WIN) |
| // Get plain-text WiFi credentials from the system (requires UAC privilege |
| -// elevation) and encrypt them with |public_key|. |
| -IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, |
| - std::string /* ssid */, |
| - std::vector<uint8> /* public_key */) |
| - |
| -// Reply after getting WiFi credentials from the system and encrypting them with |
| -// caller's public key. |success| is false if error occurred. |
| -IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, |
| - std::vector<uint8> /* encrypted_key_data */, |
| +// elevation). |
| +IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_GetWiFiCredentials, |
|
Jorge Lucangeli Obes
2014/07/22 18:18:49
So this is not encrypted anymore? The comment chan
Noam Samuel
2014/07/23 17:19:11
Correct. Communication between the utility process
|
| + std::string /* ssid */) |
| + |
| +// Reply after getting WiFi credentials from the system. |success| is false if |
| +// error occurred. |
| +IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotWiFiCredentials, |
| + std::string /* key_data */, |
| bool /* success */) |
| #endif // defined(OS_WIN) |