blob: 8ac0bd56e31b39c444368f4f142112f04fcb12e9 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_SANDBOX_SUPPORT_SANDBOX_SUPPORT_MAC_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_SANDBOX_SUPPORT_SANDBOX_SUPPORT_MAC_H_
namespace blink {
// Named Mac system colors.
enum class MacSystemColorID {
kControlAccentBlueColor,
kControlAccentColor,
kKeyboardFocusIndicator,
kSecondarySelectedControl,
kSelectedTextBackground,
kCount,
};
constexpr size_t kMacSystemColorIDCount =
static_cast<size_t>(MacSystemColorID::kCount);
constexpr size_t kMacSystemColorSchemeCount = 2;
} // namespace blink
#endif // THIRD_PARTY_BLINK_PUBLIC_COMMON_SANDBOX_SUPPORT_SANDBOX_SUPPORT_MAC_H_