blob: a31b0ae6161b44f4322106f461ebb99af9e8dbe3 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string>
#include <string_view>
#include "third_party/webrtc/api/field_trials_view.h"
#include "third_party/webrtc/rtc_base/system/rtc_export.h"
class RTC_EXPORT WebRtcFieldTrials : public webrtc::FieldTrialsView {
public:
std::string Lookup(std::string_view trial) const override;
};