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

Unified Diff: net/disk_cache/in_flight_backend_io.h

Issue 13731002: Cache Backend Proxy to intercept all cache events from the IO thread. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: added destructor Created 7 years, 8 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/in_flight_backend_io.h
diff --git a/net/disk_cache/in_flight_backend_io.h b/net/disk_cache/in_flight_backend_io.h
index 09cfd3f70a3ebd29bd418962c0e12eb4e17c9812..552c40cdfae276a3fadf5507923873eb521fd2ae 100644
--- a/net/disk_cache/in_flight_backend_io.h
+++ b/net/disk_cache/in_flight_backend_io.h
@@ -74,7 +74,6 @@ class BackendIO : public BackgroundIO {
void CancelSparseIO(EntryImpl* entry);
void ReadyForSparseIO(EntryImpl* entry);
- private:
// There are two types of operations to proxy: regular backend operations are
// executed sequentially (queued by the message loop). On the other hand,
// operations targeted to a given entry can be long lived and support multiple
@@ -106,6 +105,7 @@ class BackendIO : public BackgroundIO {
OP_CANCEL_IO,
OP_IS_READY
};
+ private:
rvargas (doing something else) 2013/04/05 19:25:13 nit: move one line down (emty line before, not aft
pasko-google - do not use 2013/04/09 11:53:17 Done.
virtual ~BackendIO();

Powered by Google App Engine
This is Rietveld 408576698