blob: 353c87bbf8c9654e0413d6f1c946ece7571c64fd [file] [log] [blame]
Sebastian Jansson9eb38862018-06-14 16:47:42 +02001/*
2 * Copyright 2018 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10#ifndef RTC_BASE_EXPERIMENTS_FIELD_TRIAL_UNITS_H_
11#define RTC_BASE_EXPERIMENTS_FIELD_TRIAL_UNITS_H_
12
Sebastian Jansson9eb38862018-06-14 16:47:42 +020013#include "api/units/data_rate.h"
14#include "api/units/data_size.h"
15#include "api/units/time_delta.h"
Jonas Olssona4d87372019-07-05 19:08:33 +020016#include "rtc_base/experiments/field_trial_parser.h"
Sebastian Jansson9eb38862018-06-14 16:47:42 +020017
18namespace webrtc {
19extern template class FieldTrialParameter<DataRate>;
20extern template class FieldTrialParameter<DataSize>;
21extern template class FieldTrialParameter<TimeDelta>;
22
Sebastian Janssonb22f0772018-11-19 17:44:33 +010023extern template class FieldTrialConstrained<DataRate>;
24extern template class FieldTrialConstrained<DataSize>;
25extern template class FieldTrialConstrained<TimeDelta>;
26
Sebastian Jansson9eb38862018-06-14 16:47:42 +020027extern template class FieldTrialOptional<DataRate>;
28extern template class FieldTrialOptional<DataSize>;
29extern template class FieldTrialOptional<TimeDelta>;
30} // namespace webrtc
31
32#endif // RTC_BASE_EXPERIMENTS_FIELD_TRIAL_UNITS_H_