chromium/ui/views/test/mock_native_widget.h

//, Copyright 2023 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_MOCK_NATIVE_WIDGET_H_
#define UI_VIEWS_TEST_MOCK_NATIVE_WIDGET_H_

#include <memory>
#include <string>

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "ui/base/mojom/ui_base_types.mojom-shared.h"
#include "ui/views/widget/native_widget_private.h"

namespace views {

class MockNativeWidget : public internal::NativeWidgetPrivate {};

}  // namespace views

#endif  // UI_VIEWS_TEST_MOCK_NATIVE_WIDGET_H_