chromium/ui/views/layout/fill_layout.cc

// Copyright 2011 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/views/layout/fill_layout.h"

#include <algorithm>

#include "ui/views/view_class_properties.h"

namespace views {

FillLayout::FillLayout() = default;

FillLayout::~FillLayout() = default;

FillLayout& FillLayout::SetMinimumSizeEnabled(bool minimum_size_enabled) {}

FillLayout& FillLayout::SetIncludeInsets(bool include_insets) {}

ProposedLayout FillLayout::CalculateProposedLayout(
    const SizeBounds& size_bounds) const {}

gfx::Size FillLayout::GetPreferredSize(const View* host) const {}

gfx::Size FillLayout::GetPreferredSize(const View* host,
                                       const SizeBounds& available_size) const {}

gfx::Size FillLayout::GetMinimumSize(const View* host) const {}

int FillLayout::GetPreferredHeightForWidth(const View* host, int width) const {}

SizeBounds FillLayout::GetContentsSizeBounds(const View* host) const {}

}  // namespace views