chromium/chrome/browser/ui/webui/password_manager/promo_cards_handler.h

// Copyright 2023 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_WEBUI_PASSWORD_MANAGER_PROMO_CARDS_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_PASSWORD_MANAGER_PROMO_CARDS_HANDLER_H_

#include <memory>
#include <vector>

#include "base/memory/raw_ptr.h"
#include "base/types/pass_key.h"
#include "base/values.h"
#include "content/public/browser/web_ui_message_handler.h"
#include "ui/gfx/image/image.h"

class Profile;

namespace password_manager {

class PasswordPromoCardBase;

// A class allowing providing PasswordManager WebUI capability to dynamically
// display actionable promo cards depending on the current account preferences
// and already seen promos.
class PromoCardsHandler : public content::WebUIMessageHandler {};

}  // namespace password_manager

#endif  // CHROME_BROWSER_UI_WEBUI_PASSWORD_MANAGER_PROMO_CARDS_HANDLER_H_