chromium/chrome/browser/autofill/autofill_image_fetcher_factory.cc

// 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.

#include "chrome/browser/autofill/autofill_image_fetcher_factory.h"

#include "base/no_destructor.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/autofill/android/autofill_image_fetcher_impl.h"
#else
#include "chrome/browser/autofill/ui/autofill_image_fetcher_impl.h"
#endif

namespace autofill {

// static
AutofillImageFetcherBase* AutofillImageFetcherFactory::GetForProfile(
    Profile* profile) {}

// static
AutofillImageFetcherFactory* AutofillImageFetcherFactory::GetInstance() {}

AutofillImageFetcherFactory::AutofillImageFetcherFactory()
    :{}

AutofillImageFetcherFactory::~AutofillImageFetcherFactory() = default;

KeyedService* AutofillImageFetcherFactory::BuildServiceInstanceFor(
    content::BrowserContext* context) const {}

}  // namespace autofill