| Index: net/base/expiring_cache_unittest.cc
|
| diff --git a/net/base/expiring_cache_unittest.cc b/net/base/expiring_cache_unittest.cc
|
| index 74b069dd8d826da1ef7f22e2161ac52e45c8e988..744b85f4c4873b84dfaf8319492cc0ae8b3be4b6 100644
|
| --- a/net/base/expiring_cache_unittest.cc
|
| +++ b/net/base/expiring_cache_unittest.cc
|
| @@ -21,12 +21,13 @@ namespace net {
|
| namespace {
|
|
|
| const int kMaxCacheEntries = 10;
|
| -typedef ExpiringCache<std::string, std::string, base::TimeTicks,
|
| +typedef ExpiringCache<std::string,
|
| + std::string,
|
| + base::TimeTicks,
|
| std::less<base::TimeTicks> > Cache;
|
|
|
| struct TestFunctor {
|
| - bool operator()(const std::string& now,
|
| - const std::string& expiration) const {
|
| + bool operator()(const std::string& now, const std::string& expiration) const {
|
| return now != expiration;
|
| }
|
| };
|
|
|