Index: experimental/SkiaExamples/SkExampleNSView.mm |
diff --git a/experimental/SkiaExamples/SkExampleNSView.mm b/experimental/SkiaExamples/SkExampleNSView.mm |
deleted file mode 100644 |
index f014fa31c9d42cce79188142ae0a31c09c88901f..0000000000000000000000000000000000000000 |
--- a/experimental/SkiaExamples/SkExampleNSView.mm |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-// |
-// SkExampleNSView.m |
-// SkiaExamples |
-// |
-// Created by Sergio González on 6/11/13. |
-// |
-// |
- |
-#import "SkExampleNSView.h" |
- |
-#include "SkApplication.h" |
-#include <crt_externs.h> |
- |
-@implementation SkExampleNSView |
- |
-- (id)initWithDefaults { |
- if ((self = [super initWithDefaults])) { |
- fWind = create_sk_window(self, *_NSGetArgc(), *_NSGetArgv()); |
- } |
- return self; |
-} |
- |
-- (void)dealloc { |
- delete fWind; |
- [super dealloc]; |
-} |
- |
-@end |