| Index: base/crypto/symmetric_key_win.cc
|
| diff --git a/base/crypto/symmetric_key_win.cc b/base/crypto/symmetric_key_win.cc
|
| index 014e1ba013db6202481e85129214b231e1800315..c9be914667c990424a85b76cf6e752a77952f752 100644
|
| --- a/base/crypto/symmetric_key_win.cc
|
| +++ b/base/crypto/symmetric_key_win.cc
|
| @@ -9,7 +9,8 @@ namespace base {
|
| // TODO(albertb): Implement on Windows.
|
|
|
| // static
|
| -SymmetricKey* SymmetricKey::GenerateRandomKey(Algorithm algorithm, unsigned int key_size) {
|
| +SymmetricKey* SymmetricKey::GenerateRandomKey(Algorithm algorithm,
|
| + size_t key_size_in_bits) {
|
| return NULL;
|
| }
|
|
|
| @@ -18,7 +19,7 @@ SymmetricKey* SymmetricKey::DeriveKeyFromPassword(Algorithm algorithm,
|
| const std::string& password,
|
| const std::string& salt,
|
| size_t iterations,
|
| - size_t key_size) {
|
| + size_t key_size_in_bits) {
|
| return NULL;
|
| }
|
|
|
|
|