// Copyright 2020 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_BASE_CONTROL_TEST_WIDGET_H_ #define UI_VIEWS_CONTROLS_BASE_CONTROL_TEST_WIDGET_H_ #include "build/build_config.h" #include "ui/views/test/views_test_base.h" #include "ui/views/view.h" #include "ui/views/widget/widget.h" #include "ui/views/widget/widget_utils.h" #if BUILDFLAG(IS_MAC) #include <memory> namespace display::test { class TestScreen; } // namespace display::test #endif namespace views::test { class BaseControlTestWidget : public ViewsTestBase { … }; } // namespace views::test #endif // UI_VIEWS_CONTROLS_BASE_CONTROL_TEST_WIDGET_H_