aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/CocoaDebugger/CocoaDebuggerAppDelegate.mm
diff options
context:
space:
mode:
authorGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-16 20:49:55 +0000
committerGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-16 20:49:55 +0000
commita8a42e20f0806fabac8e87b9d06421b93a225267 (patch)
treee185fa6e65bc8d305efc953b422bfb4b7888357b /experimental/CocoaDebugger/CocoaDebuggerAppDelegate.mm
parentaf951c9bc4cbb6e60b430194fe5127ebe99c53fb (diff)
Added CocoaDebugger to experimental
git-svn-id: http://skia.googlecode.com/svn/trunk@1622 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/CocoaDebugger/CocoaDebuggerAppDelegate.mm')
-rw-r--r--experimental/CocoaDebugger/CocoaDebuggerAppDelegate.mm10
1 files changed, 10 insertions, 0 deletions
diff --git a/experimental/CocoaDebugger/CocoaDebuggerAppDelegate.mm b/experimental/CocoaDebugger/CocoaDebuggerAppDelegate.mm
new file mode 100644
index 0000000000..7358c5f7ce
--- /dev/null
+++ b/experimental/CocoaDebugger/CocoaDebuggerAppDelegate.mm
@@ -0,0 +1,10 @@
+#import "CocoaDebuggerAppDelegate.h"
+
+@implementation CocoaDebuggerAppDelegate
+@synthesize window;
+
+-(void) applicationDidFinishLaunching:(NSNotification *)aNotification {
+ //Load specified skia views after launching
+ [window installSkViews];
+}
+@end