| Index: net/disk_cache/eviction.cc
|
| ===================================================================
|
| --- net/disk_cache/eviction.cc (revision 50158)
|
| +++ net/disk_cache/eviction.cc (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2006-2010 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -224,7 +224,7 @@
|
|
|
| ReportTrimTimes(entry);
|
| if (empty || !new_eviction_) {
|
| - entry->Doom();
|
| + entry->DoomImpl();
|
| } else {
|
| entry->DeleteEntryData(false);
|
| EntryStore* info = entry->entry()->Data();
|
| @@ -453,7 +453,7 @@
|
| }
|
| bool doomed = (entry->entry()->Data()->state == ENTRY_DOOMED);
|
| entry->entry()->Data()->state = ENTRY_DOOMED;
|
| - entry->Doom();
|
| + entry->DoomImpl();
|
| entry->Release();
|
| return !doomed;
|
| }
|
|
|