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

Unified Diff: chrome/browser/keychain_mac.cc

Issue 155451: Support individual Keychain item deletion (Closed)
Patch Set: Created 11 years, 5 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 | « chrome/browser/keychain_mac.h ('k') | chrome/browser/keychain_mock_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/keychain_mac.cc
diff --git a/chrome/browser/keychain_mac.cc b/chrome/browser/keychain_mac.cc
index cbd708681008fb8b8e127edbac5c6927ce7dbcf9..90d95a76d12e11a4550e96d73e376c0e4eedb6cd 100644
--- a/chrome/browser/keychain_mac.cc
+++ b/chrome/browser/keychain_mac.cc
@@ -24,6 +24,10 @@ OSStatus MacKeychain::ItemFreeAttributesAndData(
return SecKeychainItemFreeAttributesAndData(attrList, data);
}
+OSStatus MacKeychain::ItemDelete(SecKeychainItemRef itemRef) const {
+ return SecKeychainItemDelete(itemRef);
+}
+
OSStatus MacKeychain::SearchCreateFromAttributes(
CFTypeRef keychainOrArray, SecItemClass itemClass,
const SecKeychainAttributeList *attrList,
« no previous file with comments | « chrome/browser/keychain_mac.h ('k') | chrome/browser/keychain_mock_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698