summaryrefslogtreecommitdiffstats
path: root/base/files
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-24 23:14:17 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-24 23:14:17 +0000
commitdc4f4c2fc8e0083adafa8d381a33c1739936308a (patch)
tree2f6debc153f0c2a2aaf3cc2c8e4328cdc0ea6bab /base/files
parent6251657822da1ec90d7a96cd10b12948fc7a8cbc (diff)
downloadchromium_src-dc4f4c2fc8e0083adafa8d381a33c1739936308a.zip
chromium_src-dc4f4c2fc8e0083adafa8d381a33c1739936308a.tar.gz
chromium_src-dc4f4c2fc8e0083adafa8d381a33c1739936308a.tar.bz2
mac: Remove ScopedCFTypeRef from base::mac::.
Most references were updated from base::mac:: to base:: in r208245. Manually fix up a few stragglers in this CL too. BUG=251957 R=mark@chromium.org Review URL: https://codereview.chromium.org/17618003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208287 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/files')
-rw-r--r--base/files/file_path.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/files/file_path.cc b/base/files/file_path.cc
index ef0cde6..be34634 100644
--- a/base/files/file_path.cc
+++ b/base/files/file_path.cc
@@ -1171,7 +1171,7 @@ int FilePath::HFSFastUnicodeCompare(const StringType& string1,
}
StringType FilePath::GetHFSDecomposedForm(const StringType& string) {
- mac::ScopedCFTypeRef<CFStringRef> cfstring(
+ ScopedCFTypeRef<CFStringRef> cfstring(
CFStringCreateWithBytesNoCopy(
NULL,
reinterpret_cast<const UInt8*>(string.c_str()),
@@ -1218,7 +1218,7 @@ int FilePath::CompareIgnoreCase(const StringType& string1,
// GetHFSDecomposedForm() returns an empty string in an error case.
if (hfs1.empty() || hfs2.empty()) {
NOTREACHED();
- mac::ScopedCFTypeRef<CFStringRef> cfstring1(
+ ScopedCFTypeRef<CFStringRef> cfstring1(
CFStringCreateWithBytesNoCopy(
NULL,
reinterpret_cast<const UInt8*>(string1.c_str()),
@@ -1226,7 +1226,7 @@ int FilePath::CompareIgnoreCase(const StringType& string1,
kCFStringEncodingUTF8,
false,
kCFAllocatorNull));
- mac::ScopedCFTypeRef<CFStringRef> cfstring2(
+ ScopedCFTypeRef<CFStringRef> cfstring2(
CFStringCreateWithBytesNoCopy(
NULL,
reinterpret_cast<const UInt8*>(string2.c_str()),