blob: c1bc29b647043225525a5da6fe6d4b8eadba30c6 [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 "ash/public/cpp/shell_window_ids.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
#include "ui/wm/core/window_properties.h"
#include "ui/wm/core/window_util.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