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

Unified Diff: content/renderer/renderer_main_platform_delegate_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 | « content/renderer/pepper/pepper_truetype_font_mac.mm ('k') | crypto/apple_keychain_ios.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_main_platform_delegate_mac.mm
diff --git a/content/renderer/renderer_main_platform_delegate_mac.mm b/content/renderer/renderer_main_platform_delegate_mac.mm
index c128cf03356f123c5ad87af73d2ab3595693da1f..e7cf9ffa4cdb7543858a5aaf55d1a7dd6537aa91 100644
--- a/content/renderer/renderer_main_platform_delegate_mac.mm
+++ b/content/renderer/renderer_main_platform_delegate_mac.mm
@@ -163,9 +163,9 @@ bool RendererMainPlatformDelegate::EnableSandbox() {
// After the sandbox is initialized, call into TIS. Doing this before
// the sandbox is in place will open up renderer access to the
// pasteboard and an XPC connection to "com.apple.hiservices-xpcservice".
- base::mac::ScopedCFTypeRef<TISInputSourceRef> layout_source(
+ base::ScopedCFTypeRef<TISInputSourceRef> layout_source(
TISCopyCurrentKeyboardLayoutInputSource());
- base::mac::ScopedCFTypeRef<TISInputSourceRef> input_source(
+ base::ScopedCFTypeRef<TISInputSourceRef> input_source(
TISCopyCurrentKeyboardInputSource());
CFTypeRef source_list[] = { layout_source.get(), input_source.get() };
« no previous file with comments | « content/renderer/pepper/pepper_truetype_font_mac.mm ('k') | crypto/apple_keychain_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698