| Index: net/disk_cache/entry_impl.cc
|
| diff --git a/net/disk_cache/entry_impl.cc b/net/disk_cache/entry_impl.cc
|
| index e4eb75a43358d4e625006d37e6753a190d638aeb..37df0d76db1bac4c5cbf79d094730e0be369b35d 100644
|
| --- a/net/disk_cache/entry_impl.cc
|
| +++ b/net/disk_cache/entry_impl.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "net/disk_cache/entry_impl.h"
|
|
|
| +#include "base/hash.h"
|
| #include "base/message_loop.h"
|
| #include "base/metrics/histogram.h"
|
| #include "base/string_util.h"
|
| @@ -12,7 +13,6 @@
|
| #include "net/disk_cache/backend_impl.h"
|
| #include "net/disk_cache/bitmap.h"
|
| #include "net/disk_cache/cache_util.h"
|
| -#include "net/disk_cache/hash.h"
|
| #include "net/disk_cache/histogram_macros.h"
|
| #include "net/disk_cache/net_log_parameters.h"
|
| #include "net/disk_cache/sparse_control.h"
|
| @@ -616,7 +616,7 @@ bool EntryImpl::DataSanityCheck() {
|
| if (!key_addr.is_initialized() && stored->key[stored->key_len])
|
| return false;
|
|
|
| - if (stored->hash != Hash(GetKey()))
|
| + if (stored->hash != base::Hash(GetKey()))
|
| return false;
|
|
|
| for (int i = 0; i < kNumStreams; i++) {
|
|
|