// 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_PLATFORM_NATIVE_WIDGET_H_ #define UI_VIEWS_TEST_TEST_PLATFORM_NATIVE_WIDGET_H_ #include <utility> #include "base/functional/callback_forward.h" #include "base/memory/raw_ptr.h" #include "ui/views/view.h" namespace views { namespace internal { class NativeWidgetDelegate; } namespace test { // NativeWidget implementation that adds the following: // . capture can be mocked. // . a boolean is set when the NativeWidget is destroyed. // Don't create directly, instead go through functions in // native_widget_factory.h that create the appropriate platform specific // implementation. template <typename PlatformNativeWidget> class TestPlatformNativeWidget : public PlatformNativeWidget { … }; } // namespace test } // namespace views #endif // UI_VIEWS_TEST_TEST_PLATFORM_NATIVE_WIDGET_H_