// Copyright 2011 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_CONTROLS_FOCUSABLE_BORDER_H_ #define UI_VIEWS_CONTROLS_FOCUSABLE_BORDER_H_ #include <optional> #include "ui/color/color_id.h" #include "ui/gfx/geometry/insets.h" #include "ui/views/border.h" #include "ui/views/view.h" namespace gfx { class Canvas; } // namespace gfx namespace views { // A Border class to draw a focused border around a field (e.g textfield). class VIEWS_EXPORT FocusableBorder : public Border { … }; } // namespace views #endif // UI_VIEWS_CONTROLS_FOCUSABLE_BORDER_H_