blob: af88f4a6c00df35106b9c5cda46339701259a6bf [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
13#include "rtc_base/experiments/field_trial_parser.h"
14
15#include "api/units/data_rate.h"
16#include "api/units/data_size.h"
17#include "api/units/time_delta.h"
18
19namespace webrtc {
20extern template class FieldTrialParameter<DataRate>;
21extern template class FieldTrialParameter<DataSize>;
22extern template class FieldTrialParameter<TimeDelta>;
23
Sebastian Janssonb22f0772018-11-19 17:44:33 +010024extern template class FieldTrialConstrained<DataRate>;
25extern template class FieldTrialConstrained<DataSize>;
26extern template class FieldTrialConstrained<TimeDelta>;
27
Sebastian Jansson9eb38862018-06-14 16:47:42 +020028extern template class FieldTrialOptional<DataRate>;
29extern template class FieldTrialOptional<DataSize>;
30extern template class FieldTrialOptional<TimeDelta>;
31} // namespace webrtc
32
33#endif // RTC_BASE_EXPERIMENTS_FIELD_TRIAL_UNITS_H_