10b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
20b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org//
30b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// Use of this source code is governed by a BSD-style license
40b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// that can be found in the LICENSE file in the root of the source
50b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// tree. An additional intellectual property rights grant can be found
60b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// in the file PATENTS.  All contributing project authors may
70b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// be found in the AUTHORS file in the root of the source tree.
80b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org//
90b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org
100b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org#include "webrtc/system_wrappers/interface/field_trial.h"
110b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org
120b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// Clients of webrtc that do not want to configure field trials can link with
130b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org// this instead of providing their own implementation.
140b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.orgnamespace webrtc {
150b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.orgnamespace field_trial {
160b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org
170b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.orgstd::string FindFullName(const std::string& name) {
180b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org  return std::string();
190b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org}
200b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org
210b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org}  // namespace field_trial
220b8a1c4ea54e6ad9597f6e3fe382d5facbc147cbandresp@webrtc.org}  // namespace webrtc
23