// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_CONTROLS_TEXT_WITH_CONTROLS_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_CONTROLS_TEXT_WITH_CONTROLS_VIEW_H_ #include "base/memory/raw_ptr.h" #include "ui/base/interaction/element_identifier.h" #include "ui/base/metadata/metadata_header_macros.h" #include "ui/views/layout/flex_layout_types.h" #include "ui/views/layout/flex_layout_view.h" #include "ui/views/view_class_properties.h" namespace views { class Label; } // namespace views // A view that contains the layout for a container with controls (no leading // icon). // *-------------------------------------------------------------------------* // | Title | Controls (buttons, icons) | // |-------------------------------------------------------------------------| // | Secondary label(s) | | // *-------------------------------------------------------------------------* class TextWithControlsView : public views::FlexLayoutView { … }; #endif // CHROME_BROWSER_UI_VIEWS_CONTROLS_TEXT_WITH_CONTROLS_VIEW_H_