blob: 5b38c4d632d873254ddd558a075a028c2a142cf3 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_
#define ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_
#include "ash/ash_export.h"
#include "base/macros.h"
namespace ash {
class WmWindow;
namespace wm {
class RootWindowLayoutManager;
}
// This will eventually become what is RootWindowController. During the
// transition it contains code used by both the aura and mus implementations.
// It should *not* contain any aura specific code.
class ASH_EXPORT RootWindowControllerCommon {
public:
explicit RootWindowControllerCommon(WmWindow* root);
~RootWindowControllerCommon();
// Creates the containers (WmWindows) used by the shell.
void CreateContainers();
// Creates the LayoutManagers for the windows created by CreateContainers().
void CreateLayoutManagers();
wm::RootWindowLayoutManager* root_window_layout() {
return root_window_layout_;
}
private:
WmWindow* root_;
wm::RootWindowLayoutManager* root_window_layout_;
DISALLOW_COPY_AND_ASSIGN(RootWindowControllerCommon);
};
} // namespace ash
#endif // ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_