Commit c3724226 authored by antrim@chromium.org's avatar antrim@chromium.org

Fix parameters order.

BUG=378338

Review URL: https://codereview.chromium.org/301353008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274476 0039d316-1c4b-4281-b951-d872f2087c98
parent 88334604
...@@ -272,8 +272,8 @@ void ManagedUserCreationControllerNew::OnMountSuccess( ...@@ -272,8 +272,8 @@ void ManagedUserCreationControllerNew::OnMountSuccess(
&password_key.signature_key); &password_key.signature_key);
Key key(Key::KEY_TYPE_SALTED_PBKDF2_AES256_1234, Key key(Key::KEY_TYPE_SALTED_PBKDF2_AES256_1234,
creation_context_->salted_master_key, std::string(), // The salt is stored elsewhere.
std::string()); // The salt is stored elsewhere. creation_context_->salted_master_key);
key.SetLabel(kCryptohomeMasterKeyLabel); key.SetLabel(kCryptohomeMasterKeyLabel);
UserContext context(creation_context_->local_user_id); UserContext context(creation_context_->local_user_id);
context.SetKey(key); context.SetKey(key);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment