Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Unified Diff: webrtc/system_wrappers/include/field_trial.h

Issue 2996643002: BWE allocation strategy
Patch Set: BWE allocation strategy Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698