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

Unified Diff: webrtc/examples/objc/AppRTCMobile/ios/ARDAppDelegate.m

Issue 2583643002: iOS: Add trendline filter to field trials. (Closed)
Patch Set: Remove extra space. Created 4 years 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
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/RTCFieldTrials.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/objc/AppRTCMobile/ios/ARDAppDelegate.m
diff --git a/webrtc/examples/objc/AppRTCMobile/ios/ARDAppDelegate.m b/webrtc/examples/objc/AppRTCMobile/ios/ARDAppDelegate.m
index 6081d60c69d42a61bd38666364930e7f9c801f99..31f9fcd03a428958bd88c4f398a5bb2b8a8e28e6 100644
--- a/webrtc/examples/objc/AppRTCMobile/ios/ARDAppDelegate.m
+++ b/webrtc/examples/objc/AppRTCMobile/ios/ARDAppDelegate.m
@@ -25,7 +25,10 @@
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- RTCInitFieldTrials(RTCFieldTrialOptionsImprovedBitrateEstimate);
+ NSDictionary *fieldTrials = @{
+ kRTCFieldTrialImprovedBitrateEstimateKey: kRTCFieldTrialEnabledValue,
+ };
+ RTCInitFieldTrialDictionary(fieldTrials);
RTCInitializeSSL();
RTCSetupInternalTracer();
_window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/RTCFieldTrials.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698