// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_HIGHLIGHT_BORDER_H_ #define UI_VIEWS_HIGHLIGHT_BORDER_H_ #include "ui/gfx/geometry/rounded_corners_f.h" #include "ui/views/border.h" #include "ui/views/views_export.h" namespace gfx { class Rect; } // namespace gfx namespace views { constexpr int kHighlightBorderThickness = …; // A rounded rectangle border that has inner (highlight) and outer color. // Useful when go/cros-launcher-spec mentions "BorderHighlight". class VIEWS_EXPORT HighlightBorder : public views::Border { … }; } // namespace views #endif // UI_VIEWS_HIGHLIGHT_BORDER_H_