#ifndef CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_
#define CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_SERVICE_H_
#include <memory>
#include <vector>
#include "base/containers/lru_cache.h"
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/bitmap_fetcher/bitmap_fetcher_delegate.h"
#include "components/keyed_service/core/keyed_service.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
namespace content {
class BrowserContext;
}
namespace data_decoder {
class DataDecoder;
}
class BitmapFetcher;
class BitmapFetcherRequest;
class GURL;
class SkBitmap;
class BitmapFetcherService : public KeyedService, public BitmapFetcherDelegate { … };
#endif