OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/metrics/field_trial.h" | 5 #include "base/metrics/field_trial.h" |
6 | 6 |
7 // Define webrtc::field_trial::FindFullName to provide webrtc with a field trial | 7 // Define webrtc::field_trial::FindFullName to provide webrtc with a field trial |
8 // implementation. | 8 // implementation. |
9 namespace webrtc { | 9 namespace webrtc { |
10 namespace field_trial { | 10 namespace field_trial { |
11 std::string FindFullName(const std::string& trial_name) { | 11 std::string FindFullName(const std::string& trial_name) { |
12 return base::FieldTrialList::FindFullName(trial_name); | 12 return base::FieldTrialList::FindFullName(trial_name); |
13 } | 13 } |
14 } // namespace field_trial | 14 } // namespace field_trial |
15 } // namespace webrtc | 15 } // namespace webrtc |
OLD | NEW |