910e62b5创建于 1月15日历史提交
// Copyright 2022 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_COLOR_SYSTEM_THEME_H_
#define UI_COLOR_SYSTEM_THEME_H_

#include "build/build_config.h"

namespace ui {

// Don't change the order or value of these entries as they are stored in prefs
// and logged in UMA. This must be kept in sync with the SystemTheme enum in
// chrome/browser/resources/settings/appearance_page/appearance_page.ts.
enum class SystemTheme {
  // Classic theme, used in the default or users' chosen theme.
  kDefault = 0,
#if BUILDFLAG(IS_LINUX)
  kGtk = 1,
  kQt = 2,
  kMaxValue = kQt,
#else
  kMaxValue = kDefault,
#endif
};

}  // namespace ui

#endif  // UI_COLOR_SYSTEM_THEME_H_