// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_EMBEDDER_SUPPORT_ORIGIN_TRIALS_ORIGIN_TRIAL_POLICY_IMPL_H_ #define COMPONENTS_EMBEDDER_SUPPORT_ORIGIN_TRIALS_ORIGIN_TRIAL_POLICY_IMPL_H_ #include <set> #include <string> #include <string_view> #include <vector> #include "third_party/blink/public/common/origin_trials/origin_trial_policy.h" namespace embedder_support { // This class is instantiated on the main/ui thread, but its methods can be // accessed from any thread. class OriginTrialPolicyImpl : public blink::OriginTrialPolicy { … }; } // namespace embedder_support #endif // COMPONENTS_EMBEDDER_SUPPORT_ORIGIN_TRIALS_ORIGIN_TRIAL_POLICY_IMPL_H_