Chromium Code Reviews| Index: net/disk_cache/mapped_file_posix.cc |
| =================================================================== |
| --- net/disk_cache/mapped_file_posix.cc (revision 4450) |
| +++ net/disk_cache/mapped_file_posix.cc (working copy) |
| @@ -20,7 +20,7 @@ |
| size = GetLength(); |
| buffer_ = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, |
| - os_file(), 0); |
| + platform_file(), 0); |
| init_ = true; |
| DCHECK(reinterpret_cast<int>(buffer_) != -1); |
| if (reinterpret_cast<int>(buffer_) == -1) |