// Copyright 2016 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/test/test_layout_manager.h" namespace views::test { TestLayoutManager::TestLayoutManager() = default; TestLayoutManager::~TestLayoutManager() = default; views::ProposedLayout TestLayoutManager::CalculateProposedLayout( const views::SizeBounds& size_bounds) const { … } void TestLayoutManager::OnLayoutChanged() { … } } // namespace views::test