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

Side by Side Diff: chrome/common/chrome_utility_messages.h

Issue 102993002: Implement Networking Private API VerifyAndEncryptCredentials method (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use utility process to get and encrypt wifi passphrase. Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
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
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 passphrase from the system (requires UAC privilege
396 // elevation) and encrypt it with |public_key|.
397 IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_GetAndEncryptWiFiPassphrase,
398 int32 /* request_id */,
399 std::string /* ssid */,
400 std::string /* public_key */)
401
402 // Reply after gettng WiFi passphrase from the system and encrypting it with
403 // caller's public key. |error| is not empty if error occured..
404 IPC_MESSAGE_CONTROL3(ChromeUtilityHostMsg_GotEncryptedWiFiPassphrase,
405 int32 /* request_id */,
406 std::string /* passphrase */,
407 std::string /* error */)
408 #endif // defined(OS_WIN)
409
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698