chromium/ui/base/test/mock_base_window.h

// 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_BASE_TEST_MOCK_BASE_WINDOW_H_
#define UI_BASE_TEST_MOCK_BASE_WINDOW_H_

#include "testing/gmock/include/gmock/gmock.h"
#include "ui/base/base_window.h"
#include "ui/gfx/geometry/rect.h"

namespace ui {
namespace test {

class MockBaseWindow : public BaseWindow {};

}  // namespace test
}  // namespace ui

#endif  // UI_BASE_TEST_MOCK_BASE_WINDOW_H_