// 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_PROFILES_PROFILE_PICKER_FEATURE_PROMO_CONTROLLER_H_ #define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_PICKER_FEATURE_PROMO_CONTROLLER_H_ #include "components/user_education/common/feature_promo_controller.h" class UserEducationService; class ProfilePickerView; // Profile Picker implementation of `FeaturePromoControllerCommon`. There is a // single instance owned by the Profile Picker, with the keyed services attached // the OTR System Profile. // The class allows the management of IPH that are displayed in the Profile // Picker. class ProfilePickerFeaturePromoController : public user_education::FeaturePromoControllerCommon { … }; #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_PICKER_FEATURE_PROMO_CONTROLLER_H_