#ifndef COMPONENTS_IMAGE_FETCHER_CORE_CACHE_IMAGE_CACHE_H_
#define COMPONENTS_IMAGE_FETCHER_CORE_CACHE_IMAGE_CACHE_H_
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "components/image_fetcher/core/cache/image_store_types.h"
#include "components/image_fetcher/core/cache/proto/cached_image_metadata.pb.h"
class PrefRegistrySimple;
class PrefService;
namespace base {
class Clock;
class SequencedTaskRunner;
class TimeTicks;
}
namespace image_fetcher {
class ImageCache;
class ImageDataStore;
class ImageMetadataStore;
class ImageCache : public base::RefCounted<ImageCache> { … };
}
#endif