// 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_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ #define UI_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ #include "base/memory/raw_ptr.h" #include "ui/gfx/geometry/rect.h" #include "ui/platform_window/platform_window.h" #include "ui/platform_window/platform_window_delegate.h" #include "ui/platform_window/stub/stub_window_export.h" namespace ui { // StubWindow is useful for tests, as well as implementations that only care // about bounds and activation state. class STUB_WINDOW_EXPORT StubWindow : public PlatformWindow { … }; } // namespace ui #endif // UI_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_