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

Unified Diff: net/disk_cache/tracing/tracing_cache_backend.h

Issue 542733002: Remove void** from disk_cache interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: narrowest, remove unused function Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: net/disk_cache/tracing/tracing_cache_backend.h
diff --git a/net/disk_cache/tracing/tracing_cache_backend.h b/net/disk_cache/tracing/tracing_cache_backend.h
index b8d18696f54019330c925b2cf2f9728d95165ad0..df4b7350ddc6511561ecebf0c8b614749d5124c4 100644
--- a/net/disk_cache/tracing/tracing_cache_backend.h
+++ b/net/disk_cache/tracing/tracing_cache_backend.h
@@ -38,9 +38,8 @@ class NET_EXPORT TracingCacheBackend : public Backend,
const CompletionCallback& callback) OVERRIDE;
virtual int DoomEntriesSince(base::Time initial_time,
const CompletionCallback& callback) OVERRIDE;
- virtual int OpenNextEntry(void** iter, Entry** next_entry,
+ virtual int OpenNextEntry(Iterator* iter, Entry** next_entry,
const CompletionCallback& callback) OVERRIDE;
- virtual void EndEnumeration(void** iter) OVERRIDE;
virtual void GetStats(StatsItems* stats) OVERRIDE;
virtual void OnExternalCacheHit(const std::string& key) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698