diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-24 18:49:05 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-24 18:49:05 +0000 |
commit | 3df79f4277938356ae3c7b3ecc25ab6165e8a899 (patch) | |
tree | a1a39cd236c8800a13f2f3bf879d69505a2508de /chrome/browser/web_applications | |
parent | 8a15ea13737ae2f8444424fc14d1fcd5e42d5218 (diff) | |
download | chromium_src-3df79f4277938356ae3c7b3ecc25ab6165e8a899.zip chromium_src-3df79f4277938356ae3c7b3ecc25ab6165e8a899.tar.gz chromium_src-3df79f4277938356ae3c7b3ecc25ab6165e8a899.tar.bz2 |
mac: Replace base::mac::ScopedCFTypeRef with base::ScopedCFTypeRef.
This CL was created fully mechanically by running
git grep -l base::mac::ScopedCFTypeRef | xargs sed -i -e 's/base::mac::ScopedCFTypeRef/base::ScopedCFTypeRef/g'
git commit -a -m.
git clang-format HEAD^ --style=Chromium
git commit -a -m.
git cl upload -t $TITLE
BUG=251957
TBR=mark@chromium.org
Review URL: https://codereview.chromium.org/16917011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208245 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_applications')
-rw-r--r-- | chrome/browser/web_applications/web_app_mac.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm index fa67351..6f72d47 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]); } |