LeviLamina
Loading...
Searching...
No Matches
FieldTrialsView.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 // vIndex: 0
12 virtual ~FieldTrialsView() = default;
13
14 // vIndex: 1
15 virtual ::std::string Lookup(::std::string_view) const = 0;
16 // NOLINTEND
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI bool IsDisabled(::std::string_view) const;
22
23 MCAPI bool IsEnabled(::std::string_view) const;
24 // NOLINTEND
25
26public:
27 // destructor thunk
28 // NOLINTBEGIN
29
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
38
39} // namespace webrtc
Definition FieldTrialsView.h:7