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
[email protected]

Review URL: https://codereview.chromium.org/16917011

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208245 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/base/mac/launch_services_util.cc b/base/mac/launch_services_util.cc
index c24d864..0081500f 100644
--- a/base/mac/launch_services_util.cc
+++ b/base/mac/launch_services_util.cc
@@ -25,7 +25,7 @@
 
   std::vector<std::string> argv = command_line.argv();
   int argc = argv.size();
-  base::mac::ScopedCFTypeRef<CFMutableArrayRef> launch_args(
+  base::ScopedCFTypeRef<CFMutableArrayRef> launch_args(
       CFArrayCreateMutable(NULL, argc - 1, &kCFTypeArrayCallBacks));
   if (!launch_args) {
     LOG(ERROR) << "CFArrayCreateMutable failed, size was " << argc;
@@ -35,8 +35,7 @@
   for (int i = 1; i < argc; ++i) {
     const std::string& arg(argv[i]);
 
-    base::mac::ScopedCFTypeRef<CFStringRef> arg_cf(
-        base::SysUTF8ToCFStringRef(arg));
+    base::ScopedCFTypeRef<CFStringRef> arg_cf(base::SysUTF8ToCFStringRef(arg));
     if (!arg_cf) {
       LOG(ERROR) << "base::SysUTF8ToCFStringRef failed for " << arg;
       return false;