layout_manager.cc 517 B

12345678910111213141516171819202122
  1. // Copyright (c) 2011 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 "ui/aura/layout_manager.h"
  5. #include "ui/aura/window.h"
  6. namespace aura {
  7. LayoutManager::LayoutManager() {
  8. }
  9. LayoutManager::~LayoutManager() {
  10. }
  11. void LayoutManager::SetChildBoundsDirect(aura::Window* child,
  12. const gfx::Rect& bounds) {
  13. child->SetBoundsInternal(bounds);
  14. }
  15. } // namespace aura