| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import "ios/web_view/shell/shell_app_delegate.h" | 5 #import "ios/web_view/shell/shell_app_delegate.h" |
| 6 | 6 |
| 7 #import "ios/web_view/public/criwv.h" | 7 #import "ios/web_view/public/cwv.h" |
| 8 #import "ios/web_view/shell/shell_delegate.h" | 8 #import "ios/web_view/shell/shell_delegate.h" |
| 9 #import "ios/web_view/shell/shell_view_controller.h" | 9 #import "ios/web_view/shell/shell_view_controller.h" |
| 10 | 10 |
| 11 #if !defined(__has_feature) || !__has_feature(objc_arc) | 11 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 12 #error "This file requires ARC support." | 12 #error "This file requires ARC support." |
| 13 #endif | 13 #endif |
| 14 | 14 |
| 15 @interface ShellAppDelegate () | 15 @interface ShellAppDelegate () |
| 16 @property(nonatomic, strong) ShellDelegate* delegate; | 16 @property(nonatomic, strong) ShellDelegate* delegate; |
| 17 @end | 17 @end |
| 18 | 18 |
| 19 @implementation ShellAppDelegate | 19 @implementation ShellAppDelegate |
| 20 | 20 |
| 21 @synthesize delegate = _delegate; | 21 @synthesize delegate = _delegate; |
| 22 @synthesize window = _window; | 22 @synthesize window = _window; |
| 23 | 23 |
| 24 - (BOOL)application:(UIApplication*)application | 24 - (BOOL)application:(UIApplication*)application |
| 25 didFinishLaunchingWithOptions:(NSDictionary*)launchOptions { | 25 didFinishLaunchingWithOptions:(NSDictionary*)launchOptions { |
| 26 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; | 26 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; |
| 27 self.window.backgroundColor = [UIColor whiteColor]; | 27 self.window.backgroundColor = [UIColor whiteColor]; |
| 28 | 28 |
| 29 self.delegate = [[ShellDelegate alloc] init]; | 29 self.delegate = [[ShellDelegate alloc] init]; |
| 30 [CRIWV configureWithDelegate:_delegate]; | 30 [CWV configureWithDelegate:_delegate]; |
| 31 | 31 |
| 32 [self.window makeKeyAndVisible]; | 32 [self.window makeKeyAndVisible]; |
| 33 | 33 |
| 34 ShellViewController* controller = [[ShellViewController alloc] init]; | 34 ShellViewController* controller = [[ShellViewController alloc] init]; |
| 35 self.window.rootViewController = controller; | 35 self.window.rootViewController = controller; |
| 36 | 36 |
| 37 return YES; | 37 return YES; |
| 38 } | 38 } |
| 39 | 39 |
| 40 - (void)applicationWillResignActive:(UIApplication*)application { | 40 - (void)applicationWillResignActive:(UIApplication*)application { |
| 41 } | 41 } |
| 42 | 42 |
| 43 - (void)applicationDidEnterBackground:(UIApplication*)application { | 43 - (void)applicationDidEnterBackground:(UIApplication*)application { |
| 44 } | 44 } |
| 45 | 45 |
| 46 - (void)applicationWillEnterForeground:(UIApplication*)application { | 46 - (void)applicationWillEnterForeground:(UIApplication*)application { |
| 47 } | 47 } |
| 48 | 48 |
| 49 - (void)applicationDidBecomeActive:(UIApplication*)application { | 49 - (void)applicationDidBecomeActive:(UIApplication*)application { |
| 50 } | 50 } |
| 51 | 51 |
| 52 - (void)applicationWillTerminate:(UIApplication*)application { | 52 - (void)applicationWillTerminate:(UIApplication*)application { |
| 53 [CRIWV shutDown]; | 53 [CWV shutDown]; |
| 54 } | 54 } |
| 55 | 55 |
| 56 @end | 56 @end |
| OLD | NEW |