| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #if !defined(__has_feature) || !__has_feature(objc_arc) | 11 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 12 #error "This file requires ARC support." | 12 #error "This file requires ARC support." |
| 13 #endif | 13 #endif |
| 14 | 14 |
| 15 #import "APPRTCAppDelegate.h" | 15 #import "APPRTCAppDelegate.h" |
| 16 | 16 |
| 17 #import "webrtc/base/objc/RTCSSLAdapter.h" | 17 #import "WebRTC/RTCSSLAdapter.h" |
| 18 | 18 |
| 19 #import "APPRTCViewController.h" | 19 #import "APPRTCViewController.h" |
| 20 | 20 |
| 21 @interface APPRTCAppDelegate () <NSWindowDelegate> | 21 @interface APPRTCAppDelegate () <NSWindowDelegate> |
| 22 @end | 22 @end |
| 23 | 23 |
| 24 @implementation APPRTCAppDelegate { | 24 @implementation APPRTCAppDelegate { |
| 25 APPRTCViewController* _viewController; | 25 APPRTCViewController* _viewController; |
| 26 NSWindow* _window; | 26 NSWindow* _window; |
| 27 } | 27 } |
| (...skipping 24 matching lines...) Expand all Loading... |
| 52 #pragma mark - NSWindow | 52 #pragma mark - NSWindow |
| 53 | 53 |
| 54 - (void)windowWillClose:(NSNotification*)notification { | 54 - (void)windowWillClose:(NSNotification*)notification { |
| 55 [_viewController windowWillClose:notification]; | 55 [_viewController windowWillClose:notification]; |
| 56 RTCCleanupSSL(); | 56 RTCCleanupSSL(); |
| 57 [NSApp terminate:self]; | 57 [NSApp terminate:self]; |
| 58 } | 58 } |
| 59 | 59 |
| 60 @end | 60 @end |
| 61 | 61 |
| OLD | NEW |