blob: 1d829f8c9423ab7ba0226d57290f9ade3baace83 [file] [log] [blame]
// Copyright 2020 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.
#include "third_party/blink/renderer/core/fetch/trust_token_issuance_authorization.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/platform/runtime_enabled_features.h"
namespace blink {
bool IsTrustTokenIssuanceAvailableInExecutionContext(
const ExecutionContext& context) {
return context.FeatureEnabled(OriginTrialFeature::kTrustTokens) ||
RuntimeEnabledFeatures::TrustTokensAlwaysAllowIssuanceEnabled();
}
} // namespace blink