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

Side by Side Diff: ios/web_view/shell/shell_app_delegate.mm

Issue 2665653003: Convert ios/web_view to ARC. (Closed)
Patch Set: Respond to comments. Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « ios/web_view/shell/shell_app_delegate.h ('k') | ios/web_view/shell/shell_delegate.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "base/mac/scoped_nsobject.h"
8 #import "ios/web_view/public/criwv.h" 7 #import "ios/web_view/public/criwv.h"
9 #import "ios/web_view/shell/shell_delegate.h" 8 #import "ios/web_view/shell/shell_delegate.h"
10 #import "ios/web_view/shell/shell_view_controller.h" 9 #import "ios/web_view/shell/shell_view_controller.h"
11 10
12 @interface ShellAppDelegate () { 11 #if !defined(__has_feature) || !__has_feature(objc_arc)
13 base::scoped_nsobject<ShellDelegate> _delegate; 12 #error "This file requires ARC support."
14 } 13 #endif
14
15 @interface ShellAppDelegate ()
16 @property (nonatomic, strong) ShellDelegate* delegate;
15 @end 17 @end
16 18
17 @implementation ShellAppDelegate 19 @implementation ShellAppDelegate
18 20
21 @synthesize delegate = _delegate;
19 @synthesize window = _window; 22 @synthesize window = _window;
20 23
21 - (BOOL)application:(UIApplication*)application 24 - (BOOL)application:(UIApplication*)application
22 didFinishLaunchingWithOptions:(NSDictionary*)launchOptions { 25 didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
23 _window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 26 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
24 self.window.backgroundColor = [UIColor whiteColor]; 27 self.window.backgroundColor = [UIColor whiteColor];
25 28
26 _delegate.reset([[ShellDelegate alloc] init]); 29 self.delegate = [[ShellDelegate alloc] init];
27 [CRIWV configureWithDelegate:_delegate]; 30 [CRIWV configureWithDelegate:_delegate];
28 31
29 [self.window makeKeyAndVisible]; 32 [self.window makeKeyAndVisible];
30 33
31 base::scoped_nsobject<ShellViewController> controller( 34 ShellViewController* controller = [[ShellViewController alloc] init];
32 [[ShellViewController alloc] init]);
33 self.window.rootViewController = controller; 35 self.window.rootViewController = controller;
34 36
35 return YES; 37 return YES;
36 } 38 }
37 39
38 - (void)applicationWillResignActive:(UIApplication*)application { 40 - (void)applicationWillResignActive:(UIApplication*)application {
39 } 41 }
40 42
41 - (void)applicationDidEnterBackground:(UIApplication*)application { 43 - (void)applicationDidEnterBackground:(UIApplication*)application {
42 } 44 }
43 45
44 - (void)applicationWillEnterForeground:(UIApplication*)application { 46 - (void)applicationWillEnterForeground:(UIApplication*)application {
45 } 47 }
46 48
47 - (void)applicationDidBecomeActive:(UIApplication*)application { 49 - (void)applicationDidBecomeActive:(UIApplication*)application {
48 } 50 }
49 51
50 - (void)applicationWillTerminate:(UIApplication*)application { 52 - (void)applicationWillTerminate:(UIApplication*)application {
51 [CRIWV shutDown]; 53 [CRIWV shutDown];
52 } 54 }
53 55
54 - (void)dealloc {
55 [_window release];
56 [super dealloc];
57 }
58
59 @end 56 @end
OLDNEW
« no previous file with comments | « ios/web_view/shell/shell_app_delegate.h ('k') | ios/web_view/shell/shell_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698