chromium/chrome/browser/autofill/ui/autofill_image_fetcher_impl.h

// Copyright 2022 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_UI_AUTOFILL_IMAGE_FETCHER_IMPL_H_
#define CHROME_BROWSER_AUTOFILL_UI_AUTOFILL_IMAGE_FETCHER_IMPL_H_

#include "components/autofill/core/browser/ui/autofill_image_fetcher.h"

#include "components/keyed_service/core/keyed_service.h"

class ProfileKey;

namespace autofill {

// chrome/ implementation of AutofillImageFetcher for Desktop clients.
class AutofillImageFetcherImpl : public AutofillImageFetcher,
                                 public KeyedService {};

}  // namespace autofill

#endif  // CHROME_BROWSER_AUTOFILL_UI_AUTOFILL_IMAGE_FETCHER_IMPL_H_