chromium/chrome/browser/ui/views/autofill/popup/password_favicon_loader.h

// Copyright 2024 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_UI_VIEWS_AUTOFILL_POPUP_PASSWORD_FAVICON_LOADER_H_
#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_POPUP_PASSWORD_FAVICON_LOADER_H_

#include "base/containers/lru_cache.h"
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "components/autofill/core/browser/ui/suggestion.h"

namespace base {
class CancelableTaskTracker;
}

namespace favicon {
class LargeIconService;
}

namespace favicon_base {
struct LargeIconResult;
}

namespace gfx {
class Image;
}

namespace image_fetcher {
class ImageFetcher;
struct RequestMetadata;
}  // namespace image_fetcher

class GURL;

namespace autofill {

// This class handles the process of loading favicons for websites associated
// with user credentials.
class PasswordFaviconLoader {};

class PasswordFaviconLoaderImpl : public PasswordFaviconLoader {};
}  // namespace autofill

#endif  // CHROME_BROWSER_UI_VIEWS_AUTOFILL_POPUP_PASSWORD_FAVICON_LOADER_H_