Sebastian Jansson | 9eb3886 | 2018-06-14 16:47:42 +0200 | [diff] [blame^] | 1 | /* |
| 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 | |
| 19 | namespace webrtc { |
| 20 | extern template class FieldTrialParameter<DataRate>; |
| 21 | extern template class FieldTrialParameter<DataSize>; |
| 22 | extern template class FieldTrialParameter<TimeDelta>; |
| 23 | |
| 24 | extern template class FieldTrialOptional<DataRate>; |
| 25 | extern template class FieldTrialOptional<DataSize>; |
| 26 | extern template class FieldTrialOptional<TimeDelta>; |
| 27 | } // namespace webrtc |
| 28 | |
| 29 | #endif // RTC_BASE_EXPERIMENTS_FIELD_TRIAL_UNITS_H_ |