| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.h" | 5 #include "remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.h" |
| 6 | 6 |
| 7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 | 8 |
| 9 #include "base/mac/scoped_cftyperef.h" | |
| 10 #include "remoting/host/installer/mac/uninstaller/remoting_uninstaller.h" | 9 #include "remoting/host/installer/mac/uninstaller/remoting_uninstaller.h" |
| 11 | 10 |
| 12 @implementation RemotingUninstallerAppDelegate | 11 @implementation RemotingUninstallerAppDelegate |
| 13 | 12 |
| 14 - (void)dealloc { | 13 - (void)dealloc { |
| 15 [super dealloc]; | 14 [super dealloc]; |
| 16 } | 15 } |
| 17 | 16 |
| 18 - (void)applicationDidFinishLaunching:(NSNotification*)aNotification { | 17 - (void)applicationDidFinishLaunching:(NSNotification*)aNotification { |
| 19 } | 18 } |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 94 |
| 96 NSLog(@"Chrome Remote Desktop Host uninstall complete."); | 95 NSLog(@"Chrome Remote Desktop Host uninstall complete."); |
| 97 NSLog(@"Status = %d", static_cast<int>(status)); | 96 NSLog(@"Status = %d", static_cast<int>(status)); |
| 98 return status != errAuthorizationSuccess; | 97 return status != errAuthorizationSuccess; |
| 99 } | 98 } |
| 100 } else { | 99 } else { |
| 101 return NSApplicationMain(argc, (const char**)argv); | 100 return NSApplicationMain(argc, (const char**)argv); |
| 102 } | 101 } |
| 103 } | 102 } |
| 104 | 103 |
| OLD | NEW |