// 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. // This file provides FeatureHasExpiryGracePeriod which is declared in // origin_trials.h. FeatureHasExpiryGracePeriod is defined in this file since // changes to it require review from the origin trials team, listed in the // OWNERS file. #include "third_party/blink/public/common/origin_trials/origin_trials.h" #include "base/containers/contains.h" #include "third_party/blink/public/mojom/origin_trial_feature/origin_trial_feature.mojom-shared.h" namespace blink::origin_trials { bool FeatureHasExpiryGracePeriod(blink::mojom::OriginTrialFeature feature) { … } } // namespace blink::origin_trials