diff options
author | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-20 20:32:53 +0000 |
---|---|---|
committer | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-20 20:32:53 +0000 |
commit | 151a212becb52428c3932cfb0928c35599466b86 (patch) | |
tree | 487992dcfeab76f82c4c5ce85a10552522519c4b /ui/aura/layout_manager.cc | |
parent | f7d9ce25eb53f1211799de746a072639759ad4ec (diff) | |
download | chromium_src-151a212becb52428c3932cfb0928c35599466b86.zip chromium_src-151a212becb52428c3932cfb0928c35599466b86.tar.gz chromium_src-151a212becb52428c3932cfb0928c35599466b86.tar.bz2 |
Revert r106508 "LayoutManager controls child bounds."
Added SetChildBounds and several listener methods to LayoutManager class. They will be used to implement more sophisticated behavior."
This reverts commit 5d72aa923ebd1068319b67a1dbaa163a324c4b45.
TBR=sadrul@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8360009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106565 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/layout_manager.cc')
-rw-r--r-- | ui/aura/layout_manager.cc | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ui/aura/layout_manager.cc b/ui/aura/layout_manager.cc deleted file mode 100644 index 4780ae0..0000000 --- a/ui/aura/layout_manager.cc +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2011 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 "ui/aura/layout_manager.h" - -#include "ui/aura/window.h" - -namespace aura { - -LayoutManager::LayoutManager() { -} - -LayoutManager::~LayoutManager() { -} - -void LayoutManager::SetChildBounds(aura::Window* child, - const gfx::Rect& bounds) { - child->SetBoundsInternal(bounds); -} - -} // namespace aura |