| Index: webrtc/system_wrappers/include/field_trial.h
 | 
| diff --git a/webrtc/system_wrappers/include/field_trial.h b/webrtc/system_wrappers/include/field_trial.h
 | 
| index b94be2cf115ff1eabfed581fed9ebde45424f26b..e81b605fc29d47e7a1f8240a89426f3a7900470e 100644
 | 
| --- a/webrtc/system_wrappers/include/field_trial.h
 | 
| +++ b/webrtc/system_wrappers/include/field_trial.h
 | 
| @@ -66,7 +66,8 @@ std::string FindFullName(const std::string& name);
 | 
|  // starts with "Enabled".
 | 
|  // TODO(tommi): Make sure all implementations support this.
 | 
|  inline bool IsEnabled(const char* name) {
 | 
| -  return FindFullName(name).find("Enabled") == 0;
 | 
| +  // Debug hack, will be fixed before final version
 | 
| +  return strcmp(name,"WebRTC-Audio-SendSideBwe")==0 || FindFullName(name).find("Enabled") == 0;
 | 
|  }
 | 
|  
 | 
|  }  // namespace field_trial
 | 
| 
 |