stacking_controller.cc 897 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "ash/wm/stacking_controller.h"
  5. #include "ash/wm/container_finder.h"
  6. #include "ui/aura/window.h"
  7. namespace ash {
  8. ////////////////////////////////////////////////////////////////////////////////
  9. // StackingController, public:
  10. StackingController::StackingController() = default;
  11. StackingController::~StackingController() = default;
  12. ////////////////////////////////////////////////////////////////////////////////
  13. // StackingController, aura::client::WindowParentingClient implementation:
  14. aura::Window* StackingController::GetDefaultParent(aura::Window* window,
  15. const gfx::Rect& bounds) {
  16. return GetDefaultParentForWindow(window, bounds);
  17. }
  18. } // namespace ash