diff options
Diffstat (limited to 'chromium/components/optimization_guide/hint_cache.h')
-rw-r--r-- | chromium/components/optimization_guide/hint_cache.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/chromium/components/optimization_guide/hint_cache.h b/chromium/components/optimization_guide/hint_cache.h index 5d2469d4a87..64076571f0d 100644 --- a/chromium/components/optimization_guide/hint_cache.h +++ b/chromium/components/optimization_guide/hint_cache.h @@ -89,9 +89,13 @@ class HintCache { void PurgeExpiredFetchedHints(); // Purges fetched hints from the owned |optimization_guide_store_| and resets - // the host-keyed cache. + // both in-memory hint caches. void ClearFetchedHints(); + // Purges fetched hints from the owned |optimization_guide_store_| and resets + // the host-keyed cache. + void ClearHostKeyedHints(); + // Returns whether the cache has a hint data for |host| locally (whether // in the host-keyed cache or persisted on disk). bool HasHint(const std::string& host) const; @@ -130,6 +134,9 @@ class HintCache { google::protobuf::RepeatedPtrField<proto::Hint>* hints, StoreUpdateData* update_data); + // Returns whether the persistent hint store owned by this is available. + bool IsHintStoreAvailable() const; + // Override |clock_| for testing. void SetClockForTesting(const base::Clock* clock); |