#ifndef EXTENSIONS_SHELL_BROWSER_ROOT_WINDOW_CONTROLLER_H_
#define EXTENSIONS_SHELL_BROWSER_ROOT_WINDOW_CONTROLLER_H_
#include <list>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "extensions/browser/app_window/app_window_registry.h"
#include "ui/aura/client/window_parenting_client.h"
#include "ui/aura/window_tree_host_observer.h"
#include "ui/gfx/native_widget_types.h"
namespace aura {
class WindowTreeHost;
namespace client {
class ScreenPositionClient;
}
}
namespace content {
class BrowserContext;
}
namespace gfx {
class Rect;
class Size;
}
namespace extensions {
class AppWindow;
class RootWindowController : public aura::client::WindowParentingClient,
public aura::WindowTreeHostObserver,
public AppWindowRegistry::Observer { … };
}
#endif