aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/mac/HelloWorldNSView.mm
diff options
context:
space:
mode:
Diffstat (limited to 'example/mac/HelloWorldNSView.mm')
-rw-r--r--example/mac/HelloWorldNSView.mm27
1 files changed, 0 insertions, 27 deletions
diff --git a/example/mac/HelloWorldNSView.mm b/example/mac/HelloWorldNSView.mm
deleted file mode 100644
index 63852e5250..0000000000
--- a/example/mac/HelloWorldNSView.mm
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright 2015 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#import "HelloWorldNSView.h"
-
-#include "SkApplication.h"
-#include <crt_externs.h>
-
-@implementation HelloWorldNSView
-
-- (id)initWithDefaults {
- if ((self = [super initWithDefaults])) {
- fWind = create_sk_window(self, *_NSGetArgc(), *_NSGetArgv());
- }
- return self;
-}
-
-- (void)dealloc {
- delete fWind;
- [super dealloc];
-}
-
-@end