Index: remoting/ios/app/app_delegate.mm |
diff --git a/remoting/ios/app/app_delegate.mm b/remoting/ios/app/app_delegate.mm |
index d6c87e00505ca54eb8cfa034a36f6a4a2349a20f..175370affc278ac8a640e999c80652915e5e1f8e 100644 |
--- a/remoting/ios/app/app_delegate.mm |
+++ b/remoting/ios/app/app_delegate.mm |
@@ -12,6 +12,7 @@ |
#include "ui/base/l10n/l10n_util.h" |
#include "ui/base/resource/resource_bundle.h" |
+#import "remoting/ios/app/remoting_resource_factory.h" |
#import "remoting/ios/app/remoting_view_controller.h" |
#import "remoting/ios/facade/remoting_authentication.h" |
#import "remoting/ios/facade/remoting_service.h" |
@@ -58,7 +59,8 @@ |
UINavigationController* navController = |
[[UINavigationController alloc] initWithRootViewController:vc]; |
navController.navigationBarHidden = true; |
- self.window.rootViewController = navController; |
+ self.window.rootViewController = [RemotingResourceFactory.defaultFactory |
+ wrapRootViewController:navController]; |
[self.window makeKeyAndVisible]; |
} |