// 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 UI_VIEWS_LAYOUT_DELEGATING_LAYOUT_MANAGER_H_ #define UI_VIEWS_LAYOUT_DELEGATING_LAYOUT_MANAGER_H_ #include "ui/views/layout/layout_manager_base.h" #include "ui/views/layout/layout_types.h" #include "ui/views/layout/proposed_layout.h" #include "ui/views/views_export.h" namespace views { class VIEWS_EXPORT LayoutDelegate { … }; // The DelegatingLayoutManager is a simple, lighterweight layout manager for use // in place of overriding the now deprecated View::Layout(). See // LayoutManagerBase for information on calculating a proposed layout. Direct // mutation of child views should not be done directly from within // CalculateProposedLayout. class VIEWS_EXPORT DelegatingLayoutManager final : public LayoutManagerBase { … }; } // namespace views #endif // UI_VIEWS_LAYOUT_DELEGATING_LAYOUT_MANAGER_H_