andresp@webrtc.org | a36ad69 | 2014-05-14 12:24:04 +0000 | [diff] [blame^] | 1 | // Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 | // |
| 3 | // Use of this source code is governed by a BSD-style license |
| 4 | // that can be found in the LICENSE file in the root of the source |
| 5 | // tree. An additional intellectual property rights grant can be found |
| 6 | // in the file PATENTS. All contributing project authors may |
| 7 | // be found in the AUTHORS file in the root of the source tree. |
| 8 | // |
| 9 | |
| 10 | #include "webrtc/system_wrappers/interface/field_trial.h" |
| 11 | |
| 12 | // Clients of webrtc that do not want to configure field trials can link with |
| 13 | // this instead of providing their own implementation. |
| 14 | namespace webrtc { |
| 15 | namespace field_trial { |
| 16 | |
| 17 | std::string FindFullName(const std::string& name) { |
| 18 | return std::string(); |
| 19 | } |
| 20 | |
| 21 | } // namespace field_trial |
| 22 | } // namespace webrtc |