| 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 edda2087d136e7e0788c145c1db2b0400299bcf1..3ae0d27f595c0e2160472283944635da88743d19 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();
|
|
|