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: remoting/host/setup/daemon_controller_mac.mm

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 | « remoting/host/policy_hack/policy_watcher_mac.mm ('k') | rlz/mac/lib/machine_id_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/setup/daemon_controller_mac.mm
diff --git a/remoting/host/setup/daemon_controller_mac.mm b/remoting/host/setup/daemon_controller_mac.mm
index 91773bef61415794cc35c1f79ae2f21ab96b6567..1c5a8b180b99c92bcccf3b8a2e96b299a305f14c 100644
--- a/remoting/host/setup/daemon_controller_mac.mm
+++ b/remoting/host/setup/daemon_controller_mac.mm
@@ -299,9 +299,8 @@ bool DaemonControllerMac::DoShowPreferencePane(const std::string& config_data) {
CFNotificationCenterRef center =
CFNotificationCenterGetDistributedCenter();
- base::mac::ScopedCFTypeRef<CFStringRef> service_name(
- CFStringCreateWithCString(kCFAllocatorDefault, remoting::kServiceName,
- kCFStringEncodingUTF8));
+ base::ScopedCFTypeRef<CFStringRef> service_name(CFStringCreateWithCString(
+ kCFAllocatorDefault, remoting::kServiceName, kCFStringEncodingUTF8));
CFNotificationCenterPostNotification(center, service_name, NULL, NULL,
TRUE);
return true;
« no previous file with comments | « remoting/host/policy_hack/policy_watcher_mac.mm ('k') | rlz/mac/lib/machine_id_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698