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. |