blob: d431af668101e308e7cdbf94f7e63cf100b6a7bf [file] [log] [blame]
“Michaelf9fc1712018-08-27 10:08:58 -05001/*
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_RTT_MULT_EXPERIMENT_H_
11#define RTC_BASE_EXPERIMENTS_RTT_MULT_EXPERIMENT_H_
12
13namespace webrtc {
14
15class RttMultExperiment {
16 public:
17 // Returns true if the experiment is enabled.
18 static bool RttMultEnabled();
19
20 // Returns rtt_mult value from field trial.
21 static float GetRttMultValue();
22};
23
24} // namespace webrtc
25
26#endif // RTC_BASE_EXPERIMENTS_RTT_MULT_EXPERIMENT_H_