Files
brave-core/common/brave_features.cc
T
Pete Miller 69748175a9 Desktop: Introduce feature flag "tab-audio-icon-interactive"
Controls whether tab audio icon can be interacted with to mute or unmute the tab
2021-12-07 21:39:05 -08:00

26 lines
938 B
C++

/* Copyright (c) 2019 The Brave Authors. All rights reserved.
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "brave/common/brave_features.h"
#include "build/build_config.h"
namespace features {
#if defined(OS_ANDROID)
// Flag for Brave Rewards.
#if defined(ARCH_CPU_X86_FAMILY) && defined(OFFICIAL_BUILD)
const base::Feature kBraveRewards{"BraveRewards",
base::FEATURE_DISABLED_BY_DEFAULT};
#else
const base::Feature kBraveRewards{"BraveRewards",
base::FEATURE_ENABLED_BY_DEFAULT};
#endif
#endif // defined(OS_ANDROID)
const base::Feature kTabAudioIconInteractive{"TabAudioIconInteractive",
base::FEATURE_ENABLED_BY_DEFAULT};
} // namespace features