| Index: net/disk_cache/blockfile/entry_impl_v3.cc
|
| diff --git a/net/disk_cache/blockfile/entry_impl_v3.cc b/net/disk_cache/blockfile/entry_impl_v3.cc
|
| index 01ac2768e2c8a33d805dc076739d5760e7f7f7d5..73719364829fb761998f0f765ebc86c9e0081be5 100644
|
| --- a/net/disk_cache/blockfile/entry_impl_v3.cc
|
| +++ b/net/disk_cache/blockfile/entry_impl_v3.cc
|
| @@ -498,7 +498,7 @@ std::string EntryImplV3::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_;
|
| }
|
|
|