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

Unified Diff: remoting/ios/app/remoting_view_controller.mm

Issue 2928433002: [CRD iOS] Use UINavigationController for view stack manipulation (Closed)
Patch Set: Add comment Created 3 years, 6 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
« no previous file with comments | « remoting/ios/app/host_view_controller.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/ios/app/remoting_view_controller.mm
diff --git a/remoting/ios/app/remoting_view_controller.mm b/remoting/ios/app/remoting_view_controller.mm
index 4e2f444697c5ef311957ced549d572f6db77b72f..153b9f10d5a4dd0ceef7fe0a93b33c9c41317a00 100644
--- a/remoting/ios/app/remoting_view_controller.mm
+++ b/remoting/ios/app/remoting_view_controller.mm
@@ -187,9 +187,8 @@ static CGFloat kHostInset = 5.f;
ClientConnectionViewController* clientConnectionViewController =
[[ClientConnectionViewController alloc] initWithHostInfo:cell.hostInfo];
- [self presentViewController:clientConnectionViewController
- animated:YES
- completion:nil];
+ [self.navigationController pushViewController:clientConnectionViewController
+ animated:YES];
completionBlock();
}
« no previous file with comments | « remoting/ios/app/host_view_controller.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698