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

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

Issue 2661333002: Track SimpleCache memory usage in net/ MemoryDumpProvider (Closed)
Patch Set: address comments Created 3 years, 9 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
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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 int DoomAllEntries(const CompletionCallback& callback) override; 127 int DoomAllEntries(const CompletionCallback& callback) override;
128 int DoomEntriesBetween(base::Time initial_time, 128 int DoomEntriesBetween(base::Time initial_time,
129 base::Time end_time, 129 base::Time end_time,
130 const CompletionCallback& callback) override; 130 const CompletionCallback& callback) override;
131 int DoomEntriesSince(base::Time initial_time, 131 int DoomEntriesSince(base::Time initial_time,
132 const CompletionCallback& callback) override; 132 const CompletionCallback& callback) override;
133 int CalculateSizeOfAllEntries(const CompletionCallback& callback) override; 133 int CalculateSizeOfAllEntries(const CompletionCallback& callback) override;
134 std::unique_ptr<Iterator> CreateIterator() override; 134 std::unique_ptr<Iterator> CreateIterator() override;
135 void GetStats(base::StringPairs* stats) override; 135 void GetStats(base::StringPairs* stats) override;
136 void OnExternalCacheHit(const std::string& key) override; 136 void OnExternalCacheHit(const std::string& key) override;
137 size_t EstimateMemoryUsage() const override;
137 138
138 // Returns number of times a cache entry was successfully opened. 139 // Returns number of times a cache entry was successfully opened.
139 int open_count() const { return open_count_; } 140 int open_count() const { return open_count_; }
140 141
141 // Returns number of times a cache entry was successfully created. 142 // Returns number of times a cache entry was successfully created.
142 int create_count() const { return create_count_; } 143 int create_count() const { return create_count_; }
143 144
144 // Fail any subsequent CreateEntry and OpenEntry. 145 // Fail any subsequent CreateEntry and OpenEntry.
145 void set_fail_requests() { fail_requests_ = true; } 146 void set_fail_requests() { fail_requests_ = true; }
146 147
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 274
274 std::unique_ptr<disk_cache::Backend>* backend_; 275 std::unique_ptr<disk_cache::Backend>* backend_;
275 CompletionCallback callback_; 276 CompletionCallback callback_;
276 bool block_; 277 bool block_;
277 bool fail_; 278 bool fail_;
278 }; 279 };
279 280
280 } // namespace net 281 } // namespace net
281 282
282 #endif // NET_HTTP_MOCK_HTTP_CACHE_H_ 283 #endif // NET_HTTP_MOCK_HTTP_CACHE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698