OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // See net/disk_cache/disk_cache.h for the public interface of the cache. | 5 // See net/disk_cache/disk_cache.h for the public interface of the cache. |
6 | 6 |
7 #ifndef NET_DISK_CACHE_MEM_BACKEND_IMPL_H__ | 7 #ifndef NET_DISK_CACHE_MEM_BACKEND_IMPL_H__ |
8 #define NET_DISK_CACHE_MEM_BACKEND_IMPL_H__ | 8 #define NET_DISK_CACHE_MEM_BACKEND_IMPL_H__ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 void RemoveFromRankingList(MemEntryImpl* entry); | 63 void RemoveFromRankingList(MemEntryImpl* entry); |
64 | 64 |
65 // Backend interface. | 65 // Backend interface. |
66 virtual int32 GetEntryCount() const OVERRIDE; | 66 virtual int32 GetEntryCount() const OVERRIDE; |
67 virtual int OpenEntry(const std::string& key, Entry** entry, | 67 virtual int OpenEntry(const std::string& key, Entry** entry, |
68 OldCompletionCallback* callback) OVERRIDE; | 68 OldCompletionCallback* callback) OVERRIDE; |
69 virtual int CreateEntry(const std::string& key, Entry** entry, | 69 virtual int CreateEntry(const std::string& key, Entry** entry, |
70 OldCompletionCallback* callback) OVERRIDE; | 70 OldCompletionCallback* callback) OVERRIDE; |
71 virtual int DoomEntry(const std::string& key, | 71 virtual int DoomEntry(const std::string& key, |
72 OldCompletionCallback* callback) OVERRIDE; | 72 OldCompletionCallback* callback) OVERRIDE; |
73 virtual int DoomAllEntries(OldCompletionCallback* callback) OVERRIDE; | |
74 virtual int DoomAllEntries(const net::CompletionCallback& callback) OVERRIDE; | 73 virtual int DoomAllEntries(const net::CompletionCallback& callback) OVERRIDE; |
75 virtual int DoomEntriesBetween(const base::Time initial_time, | |
76 const base::Time end_time, | |
77 OldCompletionCallback* callback) OVERRIDE; | |
78 virtual int DoomEntriesBetween( | 74 virtual int DoomEntriesBetween( |
79 const base::Time initial_time, | 75 const base::Time initial_time, |
80 const base::Time end_time, | 76 const base::Time end_time, |
81 const net::CompletionCallback& callback) OVERRIDE; | 77 const net::CompletionCallback& callback) OVERRIDE; |
82 virtual int DoomEntriesSince(const base::Time initial_time, | 78 virtual int DoomEntriesSince(const base::Time initial_time, |
83 OldCompletionCallback* callback) OVERRIDE; | 79 OldCompletionCallback* callback) OVERRIDE; |
84 virtual int OpenNextEntry(void** iter, Entry** next_entry, | 80 virtual int OpenNextEntry(void** iter, Entry** next_entry, |
85 OldCompletionCallback* callback) OVERRIDE; | |
86 virtual int OpenNextEntry(void** iter, Entry** next_entry, | |
87 const net::CompletionCallback& callback) OVERRIDE; | 81 const net::CompletionCallback& callback) OVERRIDE; |
88 virtual void EndEnumeration(void** iter) OVERRIDE; | 82 virtual void EndEnumeration(void** iter) OVERRIDE; |
89 virtual void GetStats( | 83 virtual void GetStats( |
90 std::vector<std::pair<std::string, std::string> >* stats) OVERRIDE {} | 84 std::vector<std::pair<std::string, std::string> >* stats) OVERRIDE {} |
91 virtual void OnExternalCacheHit(const std::string& key) OVERRIDE; | 85 virtual void OnExternalCacheHit(const std::string& key) OVERRIDE; |
92 | 86 |
93 private: | 87 private: |
94 typedef base::hash_map<std::string, MemEntryImpl*> EntryMap; | 88 typedef base::hash_map<std::string, MemEntryImpl*> EntryMap; |
95 | 89 |
96 // Old Backend interface. | 90 // Old Backend interface. |
(...skipping 21 matching lines...) Expand all Loading... |
118 int32 current_size_; | 112 int32 current_size_; |
119 | 113 |
120 net::NetLog* net_log_; | 114 net::NetLog* net_log_; |
121 | 115 |
122 DISALLOW_COPY_AND_ASSIGN(MemBackendImpl); | 116 DISALLOW_COPY_AND_ASSIGN(MemBackendImpl); |
123 }; | 117 }; |
124 | 118 |
125 } // namespace disk_cache | 119 } // namespace disk_cache |
126 | 120 |
127 #endif // NET_DISK_CACHE_MEM_BACKEND_IMPL_H__ | 121 #endif // NET_DISK_CACHE_MEM_BACKEND_IMPL_H__ |
OLD | NEW |