chromium/ui/views/test/test_layout_provider.h

// 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.

#ifndef UI_VIEWS_TEST_TEST_LAYOUT_PROVIDER_H_
#define UI_VIEWS_TEST_TEST_LAYOUT_PROVIDER_H_

#include <map>
#include <utility>

#include "ui/views/layout/layout_provider.h"
#include "ui/views/style/typography_provider.h"

namespace views::test {

// Helper to test LayoutProvider overrides.
class TestLayoutProvider : public LayoutProvider, public TypographyProvider {};

}  // namespace views::test

#endif  // UI_VIEWS_TEST_TEST_LAYOUT_PROVIDER_H_