#ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_POPUP_POPUP_ROW_WITH_BUTTON_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_POPUP_POPUP_ROW_WITH_BUTTON_VIEW_H_
#include <memory>
#include <optional>
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/scoped_observation.h"
#include "chrome/browser/ui/views/autofill/popup/popup_row_view.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/view_observer.h"
namespace content {
struct NativeWebKeyboardEvent;
}
namespace views {
class ImageButton;
}
namespace autofill {
class AutofillPopupController;
class PopupRowContentView;
class ButtonDelegate { … };
namespace {
class ButtonPlaceholder;
}
class PopupRowWithButtonView : public PopupRowView, public ButtonDelegate { … };
}
#endif