| Index: chrome/browser/chromeos/settings/token_encryptor.h
|
| diff --git a/chrome/browser/chromeos/settings/token_encryptor.h b/chrome/browser/chromeos/settings/token_encryptor.h
|
| index 0ef1008bd56c81b54b2ee3d5711238d0a2cebe4a..d4d5e392bd62e93db7fcabb9de8100a622751633 100644
|
| --- a/chrome/browser/chromeos/settings/token_encryptor.h
|
| +++ b/chrome/browser/chromeos/settings/token_encryptor.h
|
| @@ -47,8 +47,9 @@ class CryptohomeTokenEncryptor : public TokenEncryptor {
|
|
|
| private:
|
| // Converts |passphrase| to a SymmetricKey using the given |salt|.
|
| - crypto::SymmetricKey* PassphraseToKey(const std::string& passphrase,
|
| - const std::string& salt);
|
| + std::unique_ptr<crypto::SymmetricKey> PassphraseToKey(
|
| + const std::string& passphrase,
|
| + const std::string& salt);
|
|
|
| // Encrypts (AES) the token given |key| and |salt|.
|
| std::string EncryptTokenWithKey(crypto::SymmetricKey* key,
|
|
|