chromium/chrome/browser/autofill/autofill_image_fetcher_factory.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_IMAGE_FETCHER_FACTORY_H_
#define CHROME_BROWSER_AUTOFILL_AUTOFILL_IMAGE_FETCHER_FACTORY_H_

#include "base/no_destructor.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"

class KeyedService;
class Profile;

namespace autofill {

class AutofillImageFetcherBase;

// Singleton that owns all AutofillImageFetchers and associates them with
// Profiles.
class AutofillImageFetcherFactory : public ProfileKeyedServiceFactory {};

}  // namespace autofill

#endif  // CHROME_BROWSER_AUTOFILL_AUTOFILL_IMAGE_FETCHER_FACTORY_H_