blob: 07b9aff47821ace3016ab5f1eaa645ef59080330 [file] [log] [blame]
// Copyright (c) 2012 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.
#include "ash/wm/stacking_controller.h"
#include "ash/wm/container_finder.h"
#include "ui/aura/window.h"
namespace ash {
////////////////////////////////////////////////////////////////////////////////
// StackingController, public:
StackingController::StackingController() = default;
StackingController::~StackingController() = default;
////////////////////////////////////////////////////////////////////////////////
// StackingController, aura::client::WindowParentingClient implementation:
aura::Window* StackingController::GetDefaultParent(aura::Window* window,
const gfx::Rect& bounds) {
return wm::GetDefaultParent(window, bounds);
}
} // namespace ash