#ifndef CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_
#define CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_
#include <memory>
#include <optional>
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/values.h"
#include "chrome/browser/bitmap_fetcher/bitmap_fetcher_delegate.h"
#include "services/data_decoder/public/cpp/data_decoder.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "url/gurl.h"
class BitmapFetcher;
namespace network {
namespace mojom {
class URLLoaderFactory;
}
}
namespace extensions {
class WebstoreInstallHelper : public base::RefCounted<WebstoreInstallHelper>,
public BitmapFetcherDelegate { … };
}
#endif