#ifndef UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_UTIL_H_
#define UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_UTIL_H_
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/geometry/size.h"
namespace gfx {
class Canvas;
class Rect;
}
namespace views {
class Button;
constexpr gfx::Size ComboboxArrowSize() { … }
extern const int kComboboxArrowPaddingWidth;
int GetComboboxArrowContainerWidthAndMargins();
int GetComboboxArrowContainerWidth();
void PaintComboboxArrow(SkColor color,
const gfx::Rect& bounds,
gfx::Canvas* canvas);
void ConfigureComboboxButtonInkDrop(Button* host_view);
}
#endif