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

Unified Diff: crypto/apple_keychain.h

Issue 2932473004: Remove depprecated methods in AppleKeychain. (Closed)
Patch Set: Clean up everything Created 3 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 | « no previous file | crypto/apple_keychain_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/apple_keychain.h
diff --git a/crypto/apple_keychain.h b/crypto/apple_keychain.h
index 1037b7eccdb1f5fca5dd9303d172965f8c9deb2b..ca681df5e0af2d946d701787885d3013bd88cb5a 100644
--- a/crypto/apple_keychain.h
+++ b/crypto/apple_keychain.h
@@ -54,50 +54,7 @@ class CRYPTO_EXPORT AppleKeychain {
SecKeychainItemRef* itemRef) const;
#if !defined(OS_IOS)
- virtual OSStatus ItemCopyAttributesAndData(
- SecKeychainItemRef itemRef,
- SecKeychainAttributeInfo* info,
- SecItemClass* itemClass,
- SecKeychainAttributeList** attrList,
- UInt32* length,
- void** outData) const;
-
- virtual OSStatus ItemModifyAttributesAndData(
- SecKeychainItemRef itemRef,
- const SecKeychainAttributeList* attrList,
- UInt32 length,
- const void* data) const;
-
- virtual OSStatus ItemFreeAttributesAndData(SecKeychainAttributeList* attrList,
- void* data) const;
-
virtual OSStatus ItemDelete(SecKeychainItemRef itemRef) const;
-
- virtual OSStatus SearchCreateFromAttributes(
- CFTypeRef keychainOrArray,
- SecItemClass itemClass,
- const SecKeychainAttributeList* attrList,
- SecKeychainSearchRef* searchRef) const;
-
- virtual OSStatus SearchCopyNext(SecKeychainSearchRef searchRef,
- SecKeychainItemRef* itemRef) const;
-
- virtual OSStatus AddInternetPassword(SecKeychainRef keychain,
- UInt32 serverNameLength,
- const char* serverName,
- UInt32 securityDomainLength,
- const char* securityDomain,
- UInt32 accountNameLength,
- const char* accountName,
- UInt32 pathLength, const char* path,
- UInt16 port, SecProtocolType protocol,
- SecAuthenticationType authenticationType,
- UInt32 passwordLength,
- const void* passwordData,
- SecKeychainItemRef* itemRef) const;
-
- // Calls CFRelease on the given ref, after checking that |ref| is non-NULL.
- virtual void Free(CFTypeRef ref) const;
#endif // !defined(OS_IOS)
private:
« no previous file with comments | « no previous file | crypto/apple_keychain_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698