#include "chrome/browser/ui/autofill/autofill_field_promo_controller_impl.h"
#include "base/functional/bind.h"
#include "base/functional/overloaded.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/autofill/autofill_field_promo_view.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_window.h"
#include "components/autofill/content/browser/content_autofill_driver.h"
#include "components/autofill/core/browser/ui/suggestion_hiding_reason.h"
#include "components/password_manager/content/browser/content_password_manager_driver.h"
#include "content/public/browser/web_contents.h"
#include "ui/gfx/geometry/rect_f.h"
namespace autofill {
AutofillFieldPromoControllerImpl::AutofillFieldPromoControllerImpl(
content::WebContents* web_contents,
const base::Feature& feature_promo,
ui::ElementIdentifier promo_element_identifier)
: … { … }
AutofillFieldPromoControllerImpl::~AutofillFieldPromoControllerImpl() { … }
void AutofillFieldPromoControllerImpl::Show(const gfx::RectF& bounds) { … }
void AutofillFieldPromoControllerImpl::Hide() { … }
}