blob: 54674c4bd3c2ee35b86d3e2e92a270486acbcdcd [file] [log] [blame]
// Copyright 2021 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_NATIVE_THEME_NATIVE_THEME_UTILS_H_
#define UI_NATIVE_THEME_NATIVE_THEME_UTILS_H_
#include <string_view>
#include "base/component_export.h"
#include "ui/native_theme/native_theme.h"
namespace ui {
// The following functions convert various values to strings intended for
// logging. Do not retain the results for longer than the scope in which these
// functions are called.
// Converts NativeTheme::ColorScheme.
std::string_view COMPONENT_EXPORT(NATIVE_THEME)
NativeThemeColorSchemeName(NativeTheme::ColorScheme color_scheme);
COMPONENT_EXPORT(NATIVE_THEME) bool IsOverlayScrollbarEnabled();
} // namespace ui
#endif // UI_NATIVE_THEME_NATIVE_THEME_UTILS_H_