| Index: sync/util/nigori.cc
|
| diff --git a/sync/util/nigori.cc b/sync/util/nigori.cc
|
| index e74d81a91851b1f65fb01653e2f1752a76ee9ea4..7a9702de08cbf989a76522081a57e6767012f4a3 100644
|
| --- a/sync/util/nigori.cc
|
| +++ b/sync/util/nigori.cc
|
| @@ -160,7 +160,7 @@ bool Nigori::Encrypt(const std::string& value, std::string* encrypted) const {
|
| return false;
|
|
|
| std::string iv;
|
| - crypto::RandBytes(WriteInto(&iv, kIvSize + 1), kIvSize);
|
| + crypto::RandBytes(base::WriteInto(&iv, kIvSize + 1), kIvSize);
|
|
|
| Encryptor encryptor;
|
| if (!encryptor.Init(encryption_key_.get(), Encryptor::CBC, iv))
|
|
|