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

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

Issue 2479153002: Rename media constraints model and store. (Closed)
Patch Set: Created 4 years, 1 month 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/examples/objc/AppRTCMobile/ios/ARDMainViewController.m
diff --git a/webrtc/examples/objc/AppRTCMobile/ios/ARDMainViewController.m b/webrtc/examples/objc/AppRTCMobile/ios/ARDMainViewController.m
index 33ff8fa9c6f1ea7581f610163ae0ddb1206914da..7ced6c16a48cdadfb4d5852c67968f982d8b33be 100644
--- a/webrtc/examples/objc/AppRTCMobile/ios/ARDMainViewController.m
+++ b/webrtc/examples/objc/AppRTCMobile/ios/ARDMainViewController.m
@@ -19,7 +19,7 @@
#import "ARDAppClient.h"
#import "ARDMainView.h"
-#import "ARDMediaConstraintsModel.h"
+#import "ARDSettingsModel.h"
#import "ARDSettingsViewController.h"
#import "ARDVideoCallViewController.h"
@@ -173,7 +173,7 @@ static NSString *const barButtonImageString = @"ic_settings_black_24dp.png";
- (void)showSettings:(id)sender {
ARDSettingsViewController *settingsController =
[[ARDSettingsViewController alloc] initWithStyle:UITableViewStylePlain
- mediaConstraintsModel:[[ARDMediaConstraintsModel alloc] init]];
+ settingsModel:[[ARDSettingsModel alloc] init]];
UINavigationController *navigationController =
[[UINavigationController alloc] initWithRootViewController:settingsController];
[self presentViewControllerAsModal:navigationController];

Powered by Google App Engine
This is Rietveld 408576698