// Copyright 2012 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_BASE_WINDOW_H_ #define UI_BASE_BASE_WINDOW_H_ #include "base/component_export.h" #include "build/build_config.h" #include "ui/base/ui_base_types.h" #include "ui/gfx/native_widget_types.h" namespace gfx { class Rect; } namespace ui { // Provides an interface to perform actions on windows, and query window // state. class COMPONENT_EXPORT(UI_BASE) BaseWindow { … }; } // namespace ui #endif // UI_BASE_BASE_WINDOW_H_