OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #import "chrome/browser/cocoa/external_protocol_dialog.h" | 5 #import "chrome/browser/cocoa/external_protocol_dialog.h" |
6 | 6 |
7 #include "app/l10n_util_mac.h" | 7 #include "app/l10n_util_mac.h" |
8 #include "base/histogram.h" | |
9 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
10 #include "base/string_util.h" | 9 #include "base/string_util.h" |
11 #include "base/sys_string_conversions.h" | 10 #include "base/sys_string_conversions.h" |
12 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
13 #include "chrome/browser/external_protocol_handler.h" | 12 #include "chrome/browser/external_protocol_handler.h" |
14 #include "grit/chromium_strings.h" | 13 #include "grit/chromium_strings.h" |
15 #include "grit/generated_resources.h" | 14 #include "grit/generated_resources.h" |
16 | 15 |
17 /////////////////////////////////////////////////////////////////////////////// | 16 /////////////////////////////////////////////////////////////////////////////// |
18 // ExternalProtocolHandler | 17 // ExternalProtocolHandler |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 } | 144 } |
146 NSString* appPath = [(NSURL*)openingApp path]; | 145 NSString* appPath = [(NSURL*)openingApp path]; |
147 CFRelease(openingApp); // NOT A BUG; LSGetApplicationForURL retains for us | 146 CFRelease(openingApp); // NOT A BUG; LSGetApplicationForURL retains for us |
148 NSString* appDisplayName = | 147 NSString* appDisplayName = |
149 [[NSFileManager defaultManager] displayNameAtPath:appPath]; | 148 [[NSFileManager defaultManager] displayNameAtPath:appPath]; |
150 | 149 |
151 return base::SysNSStringToUTF16(appDisplayName); | 150 return base::SysNSStringToUTF16(appDisplayName); |
152 } | 151 } |
153 | 152 |
154 @end | 153 @end |
OLD | NEW |