chromium/ui/linux/fallback_linux_ui.h

// Copyright 2023 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_LINUX_FALLBACK_LINUX_UI_H_
#define UI_LINUX_FALLBACK_LINUX_UI_H_

#include <optional>

#include "ui/gfx/font_render_params.h"
#include "ui/linux/linux_ui.h"

namespace ui {

// This class is meant to be overridden by tests.  It's provided as a
// convenience so that tests don't have to stub lots of methods just to override
// a single one.
class FallbackLinuxUi : public LinuxUiAndTheme {};

}  // namespace ui

#endif  // UI_LINUX_FALLBACK_LINUX_UI_H_