Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.mm

Issue 157063002: Add helpers for CGL types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused include Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/mac/scoped_typeref.h ('k') | ui/gl/gl.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « base/mac/scoped_typeref.h ('k') | ui/gl/gl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698