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

Unified Diff: net/disk_cache/blockfile/in_flight_backend_io.h

Issue 547513002: Remove disk_cache::BackendImpl::OpenPrevEntry() and all users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: narrower 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/blockfile/in_flight_backend_io.h
diff --git a/net/disk_cache/blockfile/in_flight_backend_io.h b/net/disk_cache/blockfile/in_flight_backend_io.h
index 935d3a5f9f249281641fa6b0eb5526ffa9a16bee..76557d16abccb71caaabdf9b41f7e463e5a50079 100644
--- a/net/disk_cache/blockfile/in_flight_backend_io.h
+++ b/net/disk_cache/blockfile/in_flight_backend_io.h
@@ -56,7 +56,6 @@ class BackendIO : public BackgroundIO {
const base::Time end_time);
void DoomEntriesSince(const base::Time initial_time);
void OpenNextEntry(void** iter, Entry** next_entry);
- void OpenPrevEntry(void** iter, Entry** prev_entry);
void EndEnumeration(void* iterator);
void OnExternalCacheHit(const std::string& key);
void CloseEntryImpl(EntryImpl* entry);
@@ -91,7 +90,6 @@ class BackendIO : public BackgroundIO {
OP_DOOM_BETWEEN,
OP_DOOM_SINCE,
OP_OPEN_NEXT,
- OP_OPEN_PREV,
OP_END_ENUMERATION,
OP_ON_EXTERNAL_CACHE_HIT,
OP_CLOSE_ENTRY,
@@ -168,8 +166,6 @@ class InFlightBackendIO : public InFlightIO {
const net::CompletionCallback& callback);
void OpenNextEntry(void** iter, Entry** next_entry,
const net::CompletionCallback& callback);
- void OpenPrevEntry(void** iter, Entry** prev_entry,
- const net::CompletionCallback& callback);
void EndEnumeration(void* iterator);
void OnExternalCacheHit(const std::string& key);
void CloseEntryImpl(EntryImpl* entry);

Powered by Google App Engine
This is Rietveld 408576698