[go: nahoru, domu]

blob: 44222903fafc16d0ee71809a6e895d9ae3e3ad8f [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/variations/limited_entropy_mode_gate.h"
namespace variations {
namespace {
enum class ForcedState {
ENABLED,
DISABLED,
UNSET,
};
ForcedState g_forced_state_for_testing = ForcedState::UNSET;
}
bool IsLimitedEntropyModeEnabled(version_info::Channel channel) {
if (g_forced_state_for_testing != ForcedState::UNSET) {
return g_forced_state_for_testing == ForcedState::ENABLED;
}
// TODO(crbug.com/1511779): Enable limited entropy mode in more channels.
return channel == version_info::Channel::CANARY ||
channel == version_info::Channel::UNKNOWN;
}
void EnableLimitedEntropyModeForTesting() {
g_forced_state_for_testing = ForcedState::ENABLED;
}
void DisableLimitedEntropyModeForTesting() {
g_forced_state_for_testing = ForcedState::DISABLED;
}
} // namespace variations