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

Unified Diff: chrome/browser/password_manager/password_store_mac.h

Issue 10875029: Rename MacKeychain to AppleKeychain (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address Avi's code review: add NStoCFCast and other nits. Created 8 years, 4 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/password_manager/password_store_mac.h
diff --git a/chrome/browser/password_manager/password_store_mac.h b/chrome/browser/password_manager/password_store_mac.h
index 36df2ba3e3533d5f906611ae0efe4b511de94707..3974ecbfc86b7c1272e817ec3e13aed80c2f78fc 100644
--- a/chrome/browser/password_manager/password_store_mac.h
+++ b/chrome/browser/password_manager/password_store_mac.h
@@ -18,7 +18,7 @@ class NotificationService;
}
namespace crypto {
-class MacKeychain;
+class AppleKeychain;
}
// Implements PasswordStore on top of the OS X Keychain, with an internal
@@ -30,7 +30,7 @@ class PasswordStoreMac : public PasswordStore {
public:
// Takes ownership of |keychain| and |login_db|, both of which must be
// non-NULL.
- PasswordStoreMac(crypto::MacKeychain* keychain, LoginDatabase* login_db);
+ PasswordStoreMac(crypto::AppleKeychain* keychain, LoginDatabase* login_db);
// Initializes |thread_| and |notification_service_|.
virtual bool Init() OVERRIDE;
@@ -87,7 +87,7 @@ class PasswordStoreMac : public PasswordStore {
// thread.
void CreateNotificationService();
- scoped_ptr<crypto::MacKeychain> keychain_;
+ scoped_ptr<crypto::AppleKeychain> keychain_;
scoped_ptr<LoginDatabase> login_metadata_db_;
// Thread that the synchronous methods are run on.
« no previous file with comments | « chrome/browser/password_manager/password_store_factory.cc ('k') | chrome/browser/password_manager/password_store_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698