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

Unified Diff: crypto/cssm_init.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 | « crypto/apple_keychain_ios.mm ('k') | gpu/config/gpu_info_collector_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/cssm_init.cc
diff --git a/crypto/cssm_init.cc b/crypto/cssm_init.cc
index 7b7e52dc5e0d47e9d8caeaa040a312b6254f03aa..208309c351e3a1ea87ca9285c214d6a591129079 100644
--- a/crypto/cssm_init.cc
+++ b/crypto/cssm_init.cc
@@ -184,7 +184,7 @@ void CSSMFree(void* ptr) {
void LogCSSMError(const char* fn_name, CSSM_RETURN err) {
if (!err)
return;
- base::mac::ScopedCFTypeRef<CFStringRef> cfstr(
+ base::ScopedCFTypeRef<CFStringRef> cfstr(
SecCopyErrorMessageString(err, NULL));
LOG(ERROR) << fn_name << " returned " << err
<< " (" << base::SysCFStringRefToUTF8(cfstr) << ")";
« no previous file with comments | « crypto/apple_keychain_ios.mm ('k') | gpu/config/gpu_info_collector_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698