| Index: chrome/browser/web_applications/web_app_mac.mm
|
| diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm
|
| index fa67351784d9e3c4749a0f61875e8d6db772ee8b..6f72d47b9604eff68ee93578b5b711f1cb55ef1d 100644
|
| --- a/chrome/browser/web_applications/web_app_mac.mm
|
| +++ b/chrome/browser/web_applications/web_app_mac.mm
|
| @@ -533,7 +533,7 @@ bool WebAppShortcutCreator::UpdateInternalBundleIdentifier() const {
|
|
|
| base::FilePath WebAppShortcutCreator::GetAppBundleById(
|
| const std::string& bundle_id) const {
|
| - base::mac::ScopedCFTypeRef<CFStringRef> bundle_id_cf(
|
| + base::ScopedCFTypeRef<CFStringRef> bundle_id_cf(
|
| base::SysUTF8ToCFStringRef(bundle_id));
|
| CFURLRef url_ref = NULL;
|
| OSStatus status = LSFindApplicationForInfo(
|
| @@ -541,7 +541,7 @@ base::FilePath WebAppShortcutCreator::GetAppBundleById(
|
| if (status != noErr)
|
| return base::FilePath();
|
|
|
| - base::mac::ScopedCFTypeRef<CFURLRef> url(url_ref);
|
| + base::ScopedCFTypeRef<CFURLRef> url(url_ref);
|
| NSString* path_string = [base::mac::CFToNSCast(url.get()) path];
|
| return base::FilePath([path_string fileSystemRepresentation]);
|
| }
|
|
|