| Index: net/disk_cache/blockfile/entry_impl.cc
|
| diff --git a/net/disk_cache/blockfile/entry_impl.cc b/net/disk_cache/blockfile/entry_impl.cc
|
| index a4f0ff01cff466c9938ca00ddd44881bf2ae4955..163427369ac7738ecf3d5615d486bc31fe7287ef 100644
|
| --- a/net/disk_cache/blockfile/entry_impl.cc
|
| +++ b/net/disk_cache/blockfile/entry_impl.cc
|
| @@ -786,7 +786,7 @@ std::string EntryImpl::GetKey() const {
|
| if (!offset && key_file->GetLength() != static_cast<size_t>(key_len))
|
| return std::string();
|
|
|
| - if (!key_file->Read(WriteInto(&key_, key_len), key_len, offset))
|
| + if (!key_file->Read(base::WriteInto(&key_, key_len), key_len, offset))
|
| key_.clear();
|
| return key_;
|
| }
|
|
|