#ifndef CHROME_BROWSER_UI_VIEWS_CONTROLS_HOVER_BUTTON_H_
#define CHROME_BROWSER_UI_VIEWS_CONTROLS_HOVER_BUTTON_H_
#include <string>
#include <vector>
#include "base/callback_list.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/scoped_observation.h"
#include "base/types/pass_key.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/controls/button/menu_button.h"
#include "ui/views/metadata/view_factory.h"
media_router
namespace ui {
class ImageModel;
}
namespace views {
class Label;
class StyledLabel;
class View;
}
class HoverButtonTest;
class HoverButtonController;
class PageInfoBubbleViewBrowserTest;
class HoverButton : public views::LabelButton { … };
BEGIN_VIEW_BUILDER(, HoverButton, views::LabelButton)
VIEW_BUILDER_METHOD(SetTitleTextStyle,
views::style::TextStyle,
SkColor,
std::optional<ui::ColorId>)
END_VIEW_BUILDER
DEFINE_VIEW_BUILDER(…)
#endif