Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7792)

Unified Diff: chrome/common/multi_process_lock_mac.cc

Issue 16917011: mac: Replace base::mac::ScopedCFTypeRef with base::ScopedCFTypeRef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: with fixed off-by-1 in git-clang-format Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/mac/mock_launchd.cc ('k') | chrome/common/service_process_util_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/multi_process_lock_mac.cc
diff --git a/chrome/common/multi_process_lock_mac.cc b/chrome/common/multi_process_lock_mac.cc
index 35fc576c074742086fb4be29a16df5bb587b5231..176ae4cc2a965c7daae37d33e896a5e4b1d18df3 100644
--- a/chrome/common/multi_process_lock_mac.cc
+++ b/chrome/common/multi_process_lock_mac.cc
@@ -33,7 +33,7 @@ class MultiProcessLockMac : public MultiProcessLock {
}
CFStringRef cf_name(base::SysUTF8ToCFStringRef(name_));
- base::mac::ScopedCFTypeRef<CFStringRef> scoped_cf_name(cf_name);
+ base::ScopedCFTypeRef<CFStringRef> scoped_cf_name(cf_name);
port_.reset(CFMessagePortCreateLocal(NULL, cf_name, NULL, NULL, NULL));
return port_ != NULL;
}
@@ -48,7 +48,7 @@ class MultiProcessLockMac : public MultiProcessLock {
private:
std::string name_;
- base::mac::ScopedCFTypeRef<CFMessagePortRef> port_;
+ base::ScopedCFTypeRef<CFMessagePortRef> port_;
DISALLOW_COPY_AND_ASSIGN(MultiProcessLockMac);
};
« no previous file with comments | « chrome/common/mac/mock_launchd.cc ('k') | chrome/common/service_process_util_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698