| Index: net/disk_cache/simple/simple_synchronous_entry.cc
|
| diff --git a/net/disk_cache/simple/simple_synchronous_entry.cc b/net/disk_cache/simple/simple_synchronous_entry.cc
|
| index 2512656873db66f01b462d05369c2a3f87eaa54f..815dd42d949242b94c977dad93d2051e5d720864 100644
|
| --- a/net/disk_cache/simple/simple_synchronous_entry.cc
|
| +++ b/net/disk_cache/simple/simple_synchronous_entry.cc
|
| @@ -886,10 +886,7 @@ bool SimpleSynchronousEntry::OpenFiles(SimpleEntryStat* out_entry_stat) {
|
| continue;
|
| }
|
| out_entry_stat->set_last_used(file_info.last_accessed);
|
| - if (simple_util::GetMTime(path_, &file_last_modified))
|
| - out_entry_stat->set_last_modified(file_last_modified);
|
| - else
|
| - out_entry_stat->set_last_modified(file_info.last_modified);
|
| + out_entry_stat->set_last_modified(file_info.last_modified);
|
|
|
| base::TimeDelta stream_age =
|
| base::Time::Now() - out_entry_stat->last_modified();
|
|
|