chromium/ui/webui/examples/browser/ui/aura/fill_layout.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/webui/examples/browser/ui/aura/fill_layout.h"

#include "ui/aura/window.h"

namespace webui_examples {

FillLayout::FillLayout(aura::Window* root) :{}

FillLayout::~FillLayout() = default;

void FillLayout::OnWindowResized() {}

void FillLayout::OnWindowAddedToLayout(aura::Window* child) {}

void FillLayout::OnWillRemoveWindowFromLayout(aura::Window* child) {}

void FillLayout::OnWindowRemovedFromLayout(aura::Window* child) {}

void FillLayout::OnChildWindowVisibilityChanged(aura::Window* child,
                                                bool visible) {}

void FillLayout::SetChildBounds(aura::Window* child,
                                const gfx::Rect& requested_bounds) {}

}  // namespace webui_examples