diff options
Diffstat (limited to 'net/disk_cache/in_flight_backend_io.h')
-rw-r--r-- | net/disk_cache/in_flight_backend_io.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/disk_cache/in_flight_backend_io.h b/net/disk_cache/in_flight_backend_io.h index ca239dd..7b4b111 100644 --- a/net/disk_cache/in_flight_backend_io.h +++ b/net/disk_cache/in_flight_backend_io.h @@ -200,12 +200,13 @@ class InFlightBackendIO : public InFlightIO { void QueueOperation(BackendIO* operation); void PostOperation(BackendIO* operation); void PostQueuedOperation(); - void PostAllQueuedOperations(); bool RemoveFirstQueuedOperation(BackendIO* operation); BackendImpl* backend_; scoped_refptr<base::MessageLoopProxy> background_thread_; OperationList pending_ops_; // Entry (async) operations to be posted. + base::TimeTicks queueing_start_; + size_t max_queue_len_; bool queue_entry_ops_; // True if we are queuing entry (async) operations. DISALLOW_COPY_AND_ASSIGN(InFlightBackendIO); |