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

Side by Side Diff: experimental/iOSSampleApp/iPad/AppDelegate_iPad.mm

Issue 322403007: Fix a number of issues with iOS build. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove unnecessary image Created 6 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 unified diff | Download patch
OLDNEW
1 #import "AppDelegate_iPad.h" 1 #import "AppDelegate_iPad.h"
2 2
3 @implementation AppDelegate_iPad 3 @implementation AppDelegate_iPad
4 4
5 @synthesize window, splitViewController; 5 @synthesize window, splitViewController;
6 6
7 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( NSDictionary *)launchOptions { 7 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( NSDictionary *)launchOptions {
8 [window addSubview:[splitViewController view]]; 8 [window addSubview:[splitViewController view]];
9 [window makeKeyAndVisible]; 9 [window makeKeyAndVisible];
10
11 self.window.rootViewController = splitViewController;
12
10 return YES; 13 return YES;
11 } 14 }
12 15
13 - (void)dealloc { 16 - (void)dealloc {
14 [window release]; 17 [window release];
15 [splitViewController release]; 18 [splitViewController release];
16 [super dealloc]; 19 [super dealloc];
17 } 20 }
18 21
19 @end 22 @end
OLDNEW
« no previous file with comments | « no previous file | experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm » ('j') | src/utils/ios/SkOSFile_iOS.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698