#include "ui/views/test/test_layout_provider.h"
namespace views::test {
TestLayoutProvider::TestLayoutProvider() = default;
TestLayoutProvider::~TestLayoutProvider() = default;
void TestLayoutProvider::SetDistanceMetric(int metric, int value) { … }
void TestLayoutProvider::SetSnappedDialogWidth(int width) { … }
void TestLayoutProvider::SetFontDetails(
int context,
int style,
const ui::ResourceBundle::FontDetails& details) { … }
int TestLayoutProvider::GetDistanceMetric(int metric) const { … }
const TypographyProvider& TestLayoutProvider::GetTypographyProvider() const { … }
int TestLayoutProvider::GetSnappedDialogWidth(int min_width) const { … }
ui::ResourceBundle::FontDetails TestLayoutProvider::GetFontDetailsImpl(
int context,
int style) const { … }
}