| Index: crypto/random_unittest.cc
 | 
| diff --git a/crypto/random_unittest.cc b/crypto/random_unittest.cc
 | 
| index 846d9b66f3d5419b8cf34ebe40a551a26f6eab20..00d4b2b5e861ec20489b5fa72ec47da15676111f 100644
 | 
| --- a/crypto/random_unittest.cc
 | 
| +++ b/crypto/random_unittest.cc
 | 
| @@ -22,6 +22,6 @@ bool IsTrivial(const std::string& bytes) {
 | 
|  
 | 
|  TEST(RandBytes, RandBytes) {
 | 
|    std::string bytes(16, '\0');
 | 
| -  crypto::RandBytes(WriteInto(&bytes, bytes.size()), bytes.size());
 | 
| +  crypto::RandBytes(base::WriteInto(&bytes, bytes.size()), bytes.size());
 | 
|    EXPECT_TRUE(!IsTrivial(bytes));
 | 
|  }
 | 
| 
 |