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

Side by Side 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, 3 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 // Reply when a write or verify operation fails to complete. 298 // Reply when a write or verify operation fails to complete.
299 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Failed, 299 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Failed,
300 std::string /* message */) 300 std::string /* message */)
301 301
302 // Periodic status update about the progress of an operation. 302 // Periodic status update about the progress of an operation.
303 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Progress, 303 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Progress,
304 int64 /* number of bytes processed */) 304 int64 /* number of bytes processed */)
305 305
306 #if defined(OS_WIN) 306 #if defined(OS_WIN)
307 // Get plain-text WiFi credentials from the system (requires UAC privilege 307 // Get plain-text WiFi credentials from the system (requires UAC privilege
308 // elevation) and encrypt them with |public_key|. 308 // elevation).
309 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials, 309 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_GetWiFiCredentials,
310 std::string /* ssid */, 310 std::string /* ssid */)
311 std::vector<uint8> /* public_key */)
312 311
313 // Reply after getting WiFi credentials from the system and encrypting them with 312 // Reply after getting WiFi credentials from the system. |success| is false if
314 // caller's public key. |success| is false if error occurred. 313 // error occurred.
315 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotEncryptedWiFiCredentials, 314 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotWiFiCredentials,
316 std::vector<uint8> /* encrypted_key_data */, 315 std::string /* key_data */,
317 bool /* success */) 316 bool /* success */)
318 #endif // defined(OS_WIN) 317 #endif // defined(OS_WIN)
OLDNEW
« 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