Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4196)

Unified Diff: chrome/common/extensions/chrome_utility_extensions_messages.h

Issue 343053002: Credential passing for WifiManager in Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/utility/chrome_content_utility_ipc_whitelist.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/chrome_utility_extensions_messages.h
diff --git a/chrome/common/extensions/chrome_utility_extensions_messages.h b/chrome/common/extensions/chrome_utility_extensions_messages.h
index e2881cd2899e940960f5ac933216ad96064755a4..7c27377800653ab164d20c23f7b9c5810f48a85b 100644
--- a/chrome/common/extensions/chrome_utility_extensions_messages.h
+++ b/chrome/common/extensions/chrome_utility_extensions_messages.h
@@ -305,14 +305,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,
+ 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)
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/utility/chrome_content_utility_ipc_whitelist.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698