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

Unified Diff: chrome/browser/mac/security_wrappers.h

Issue 16917011: mac: Replace base::mac::ScopedCFTypeRef with base::ScopedCFTypeRef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: chrome/browser/mac/security_wrappers.h
diff --git a/chrome/browser/mac/security_wrappers.h b/chrome/browser/mac/security_wrappers.h
index 42a78019ea1d8162df656651e34095e9eba5479c..173c130e85796735141b8e6796332fdd664a461d 100644
--- a/chrome/browser/mac/security_wrappers.h
+++ b/chrome/browser/mac/security_wrappers.h
@@ -45,8 +45,8 @@ class CrSKeychainItemAndAccess {
SecAccessRef access() const { return access_; }
private:
- base::mac::ScopedCFTypeRef<SecKeychainItemRef> item_;
- base::mac::ScopedCFTypeRef<SecAccessRef> access_;
+ base::ScopedCFTypeRef<SecKeychainItemRef> item_;
+ base::ScopedCFTypeRef<SecAccessRef> access_;
};
// Holds the return value from CrSACLCopySimpleContents and an argument to
@@ -56,8 +56,8 @@ struct CrSACLSimpleContents {
CrSACLSimpleContents();
~CrSACLSimpleContents();
- base::mac::ScopedCFTypeRef<CFArrayRef> application_list;
- base::mac::ScopedCFTypeRef<CFStringRef> description;
+ base::ScopedCFTypeRef<CFArrayRef> application_list;
+ base::ScopedCFTypeRef<CFStringRef> description;
CSSM_ACL_KEYCHAIN_PROMPT_SELECTOR prompt_selector;
};

Powered by Google App Engine
This is Rietveld 408576698