Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: net/http/mock_http_cache.h

Issue 1304363013: Add a size estimation mechanism to StoragePartitionHttpCacheDataRemover. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: static_cast Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/disk_cache/simple/simple_backend_impl.cc ('k') | net/http/mock_http_cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // This is a mock of the http cache and related testing classes. To be fair, it 5 // This is a mock of the http cache and related testing classes. To be fair, it
6 // is not really a mock http cache given that it uses the real implementation of 6 // is not really a mock http cache given that it uses the real implementation of
7 // the http cache, but it has fake implementations of all required components, 7 // the http cache, but it has fake implementations of all required components,
8 // so it is useful for unit tests at the http layer. 8 // so it is useful for unit tests at the http layer.
9 9
10 #ifndef NET_HTTP_MOCK_HTTP_CACHE_H_ 10 #ifndef NET_HTTP_MOCK_HTTP_CACHE_H_
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 disk_cache::Entry** entry, 120 disk_cache::Entry** entry,
121 const CompletionCallback& callback) override; 121 const CompletionCallback& callback) override;
122 int DoomEntry(const std::string& key, 122 int DoomEntry(const std::string& key,
123 const CompletionCallback& callback) override; 123 const CompletionCallback& callback) override;
124 int DoomAllEntries(const CompletionCallback& callback) override; 124 int DoomAllEntries(const CompletionCallback& callback) override;
125 int DoomEntriesBetween(base::Time initial_time, 125 int DoomEntriesBetween(base::Time initial_time,
126 base::Time end_time, 126 base::Time end_time,
127 const CompletionCallback& callback) override; 127 const CompletionCallback& callback) override;
128 int DoomEntriesSince(base::Time initial_time, 128 int DoomEntriesSince(base::Time initial_time,
129 const CompletionCallback& callback) override; 129 const CompletionCallback& callback) override;
130 int CalculateSizeOfAllEntries(const CompletionCallback& callback) override;
130 scoped_ptr<Iterator> CreateIterator() override; 131 scoped_ptr<Iterator> CreateIterator() override;
131 void GetStats(base::StringPairs* stats) override; 132 void GetStats(base::StringPairs* stats) override;
132 void OnExternalCacheHit(const std::string& key) override; 133 void OnExternalCacheHit(const std::string& key) override;
133 134
134 // Returns number of times a cache entry was successfully opened. 135 // Returns number of times a cache entry was successfully opened.
135 int open_count() const { return open_count_; } 136 int open_count() const { return open_count_; }
136 137
137 // Returns number of times a cache entry was successfully created. 138 // Returns number of times a cache entry was successfully created.
138 int create_count() const { return create_count_; } 139 int create_count() const { return create_count_; }
139 140
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 264
264 scoped_ptr<disk_cache::Backend>* backend_; 265 scoped_ptr<disk_cache::Backend>* backend_;
265 CompletionCallback callback_; 266 CompletionCallback callback_;
266 bool block_; 267 bool block_;
267 bool fail_; 268 bool fail_;
268 }; 269 };
269 270
270 } // namespace net 271 } // namespace net
271 272
272 #endif // NET_HTTP_MOCK_HTTP_CACHE_H_ 273 #endif // NET_HTTP_MOCK_HTTP_CACHE_H_
OLDNEW
« no previous file with comments | « net/disk_cache/simple/simple_backend_impl.cc ('k') | net/http/mock_http_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698