// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_APP_BASE_WINDOW_H_ #define CHROME_BROWSER_EXTENSIONS_API_TABS_APP_BASE_WINDOW_H_ #include "base/memory/raw_ptr.h" #include "ui/base/base_window.h" namespace extensions { class AppWindow; class NativeAppWindow; // A custom ui::BaseWindow to be given to a WindowController. It // allows us to constrain some operations on application windows (like // SetBounds). class AppBaseWindow : public ui::BaseWindow { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_APP_BASE_WINDOW_H_