// Copyright 2014 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_VIEWS_TEST_HELPER_H_ #define UI_VIEWS_TEST_VIEWS_TEST_HELPER_H_ #include <memory> #include <optional> #include "ui/gfx/native_widget_types.h" #include "ui/views/views_delegate.h" namespace views { class TestViewsDelegate; // A helper class owned by tests that performs platform specific initialization // required for running tests. class ViewsTestHelper { … }; } // namespace views #endif // UI_VIEWS_TEST_VIEWS_TEST_HELPER_H_