| Index: net/url_request/url_request_throttler_entry.h
|
| diff --git a/net/url_request/url_request_throttler_entry.h b/net/url_request/url_request_throttler_entry.h
|
| index ac33fa14f7d3b431bf3bdc1efffb1ae468709776..40262379e83dc3bae68b30ea01d4e0dca8835b4b 100644
|
| --- a/net/url_request/url_request_throttler_entry.h
|
| +++ b/net/url_request/url_request_throttler_entry.h
|
| @@ -68,6 +68,10 @@ class URLRequestThrottlerEntry : public URLRequestThrottlerEntryInterface {
|
| double jitter_factor,
|
| int maximum_backoff_ms);
|
|
|
| + // Used by the manager, returns true if the entry needs to be garbage
|
| + // collected.
|
| + bool IsEntryOutdated() const;
|
| +
|
| // Implementation of URLRequestThrottlerEntryInterface.
|
| virtual bool IsDuringExponentialBackoff() const;
|
| virtual int64 ReserveSendingTimeForNextRequest(
|
| @@ -77,10 +81,6 @@ class URLRequestThrottlerEntry : public URLRequestThrottlerEntryInterface {
|
| const URLRequestThrottlerHeaderInterface* response);
|
| virtual void ReceivedContentWasMalformed();
|
|
|
| - // Used by the manager, returns true if the entry needs to be garbage
|
| - // collected.
|
| - bool IsEntryOutdated() const;
|
| -
|
| protected:
|
| virtual ~URLRequestThrottlerEntry();
|
|
|
|
|