| 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 #import "chrome/browser/ui/cocoa/external_protocol_dialog.h" | 5 #import "chrome/browser/ui/cocoa/external_protocol_dialog.h" |
| 6 | 6 |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
| 9 #include "base/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "chrome/browser/external_protocol/external_protocol_handler.h" | 12 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
| 13 #include "grit/chromium_strings.h" | 13 #include "grit/chromium_strings.h" |
| 14 #include "grit/generated_resources.h" | 14 #include "grit/generated_resources.h" |
| 15 #include "ui/base/l10n/l10n_util_mac.h" | 15 #include "ui/base/l10n/l10n_util_mac.h" |
| 16 #include "ui/base/text/text_elider.h" | 16 #include "ui/base/text/text_elider.h" |
| 17 | 17 |
| 18 /////////////////////////////////////////////////////////////////////////////// | 18 /////////////////////////////////////////////////////////////////////////////// |
| 19 // ExternalProtocolHandler | 19 // ExternalProtocolHandler |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 } | 147 } |
| 148 NSString* appPath = [(NSURL*)openingApp path]; | 148 NSString* appPath = [(NSURL*)openingApp path]; |
| 149 CFRelease(openingApp); // NOT A BUG; LSGetApplicationForURL retains for us | 149 CFRelease(openingApp); // NOT A BUG; LSGetApplicationForURL retains for us |
| 150 NSString* appDisplayName = | 150 NSString* appDisplayName = |
| 151 [[NSFileManager defaultManager] displayNameAtPath:appPath]; | 151 [[NSFileManager defaultManager] displayNameAtPath:appPath]; |
| 152 | 152 |
| 153 return base::SysNSStringToUTF16(appDisplayName); | 153 return base::SysNSStringToUTF16(appDisplayName); |
| 154 } | 154 } |
| 155 | 155 |
| 156 @end | 156 @end |
| OLD | NEW |