// Copyright 2016 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_TEST_TEST_LAYOUT_MANAGER_H_ #define UI_VIEWS_TEST_TEST_LAYOUT_MANAGER_H_ #include "ui/gfx/geometry/size.h" #include "ui/views/layout/layout_manager_base.h" namespace views::test { // A stub layout manager that returns a specific preferred size and height for // width. class TestLayoutManager : public LayoutManagerBase { … }; } // namespace views::test #endif // UI_VIEWS_TEST_TEST_LAYOUT_MANAGER_H_