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

Unified Diff: net/base/network_config_watcher_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 | « net/base/network_change_notifier_mac.cc ('k') | net/base/platform_mime_util_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_config_watcher_mac.cc
diff --git a/net/base/network_config_watcher_mac.cc b/net/base/network_config_watcher_mac.cc
index 6d044ac34cbe41fd34808c57f8ec5c53aa997117..4e0fa29675e8bf508493e5ffa7ab431c09d6e798 100644
--- a/net/base/network_config_watcher_mac.cc
+++ b/net/base/network_config_watcher_mac.cc
@@ -43,7 +43,7 @@ class NetworkConfigWatcherMacThread : public base::Thread {
// on, so we invoke this function later on in startup to keep it fast.
void InitNotifications();
- base::mac::ScopedCFTypeRef<CFRunLoopSourceRef> run_loop_source_;
+ base::ScopedCFTypeRef<CFRunLoopSourceRef> run_loop_source_;
NetworkConfigWatcherMac::Delegate* const delegate_;
base::WeakPtrFactory<NetworkConfigWatcherMacThread> weak_factory_;
@@ -101,7 +101,7 @@ void NetworkConfigWatcherMacThread::InitNotifications() {
NULL, // This is not reference counted. No release function.
NULL, // No description for this.
};
- base::mac::ScopedCFTypeRef<SCDynamicStoreRef> store(SCDynamicStoreCreate(
+ base::ScopedCFTypeRef<SCDynamicStoreRef> store(SCDynamicStoreCreate(
NULL, CFSTR("org.chromium"), DynamicStoreCallback, &context));
run_loop_source_.reset(SCDynamicStoreCreateRunLoopSource(
NULL, store.get(), 0));
« no previous file with comments | « net/base/network_change_notifier_mac.cc ('k') | net/base/platform_mime_util_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698