chromium/ui/views/test/test_layout_provider.cc

// Copyright 2017 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_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 {}

}  // namespace views::test