summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h')
-rw-r--r--chromium/third_party/skia/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/chromium/third_party/skia/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h b/chromium/third_party/skia/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h
new file mode 100644
index 00000000000..e19b0bc15ca
--- /dev/null
+++ b/chromium/third_party/skia/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h
@@ -0,0 +1,19 @@
+
+/*
+ * Copyright 2011 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#import <UIKit/UIKit.h>
+#import "SkUINavigationController.h"
+
+@interface AppDelegate_iPhone : NSObject <UIApplicationDelegate> {
+@private
+ UIWindow *window;
+ SkUINavigationController* fRoot;
+}
+@property (nonatomic, retain) IBOutlet UIWindow *window;
+@property (nonatomic, retain) IBOutlet SkUINavigationController* fRoot;
+
+@end