chromium/third_party/blink/renderer/platform/graphics/scrollbar_theme_settings.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/platform/graphics/scrollbar_theme_settings.h"

namespace blink {

static bool g_mock_scrollbars_enabled =;
static bool g_overlay_scrollbars_enabled =;
static bool g_fluent_scrollbars_enabled =;

void ScrollbarThemeSettings::SetMockScrollbarsEnabled(bool flag) {}

bool ScrollbarThemeSettings::MockScrollbarsEnabled() {}

void ScrollbarThemeSettings::SetOverlayScrollbarsEnabled(bool flag) {}

bool ScrollbarThemeSettings::OverlayScrollbarsEnabled() {}

void ScrollbarThemeSettings::SetFluentScrollbarsEnabled(bool flag) {}

bool ScrollbarThemeSettings::FluentScrollbarsEnabled() {}

}  // namespace blink