blob: eff515390581dddd916410802a9f85dee5a894fe [file] [log] [blame]
// Copyright 2014 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/wm_default_layout_manager.h"
#include "ui/aura/window.h"
namespace ash {
WmDefaultLayoutManager::WmDefaultLayoutManager() = default;
WmDefaultLayoutManager::~WmDefaultLayoutManager() = default;
void WmDefaultLayoutManager::OnWindowResized() {}
void WmDefaultLayoutManager::OnWindowAddedToLayout(aura::Window* child) {}
void WmDefaultLayoutManager::OnWillRemoveWindowFromLayout(aura::Window* child) {
}
void WmDefaultLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) {}
void WmDefaultLayoutManager::OnChildWindowVisibilityChanged(aura::Window* child,
bool visible) {}
void WmDefaultLayoutManager::SetChildBounds(aura::Window* child,
const gfx::Rect& requested_bounds) {
SetChildBoundsDirect(child, requested_bounds);
}
} // namespace ash