Index: chrome/browser/importer/nss_decryptor_mac.h |
diff --git a/chrome/browser/importer/nss_decryptor_mac.h b/chrome/browser/importer/nss_decryptor_mac.h |
index 3e0b181ab5ac399a7452ef6e35046c31439bb645..7cae82e960d86b7bb9f2c4191984d50e99f5727f 100644 |
--- a/chrome/browser/importer/nss_decryptor_mac.h |
+++ b/chrome/browser/importer/nss_decryptor_mac.h |
@@ -105,11 +105,9 @@ typedef void (*SECITEMFreeItemFunc)(SECItem *item, PRBool free_it); |
typedef void (*PLArenaFinishFunc)(void); |
typedef PRStatus (*PRCleanupFunc)(void); |
-namespace webkit { |
-namespace forms { |
+namespace content { |
struct PasswordForm; |
} |
-} |
// A wrapper for Firefox NSS decrypt component. |
class NSSDecryptor { |
@@ -132,13 +130,13 @@ class NSSDecryptor { |
// username/password and reads other related information. |
// The result will be stored in |forms|. |
void ParseSignons(const std::string& content, |
- std::vector<webkit::forms::PasswordForm>* forms); |
+ std::vector<content::PasswordForm>* forms); |
// Reads and parses the Firefox password sqlite db, decrypts the |
// username/password and reads other related information. |
// The result will be stored in |forms|. |
bool ReadAndParseSignons(const FilePath& sqlite_file, |
- std::vector<webkit::forms::PasswordForm>* forms); |
+ std::vector<content::PasswordForm>* forms); |
private: |
PK11SlotInfo* GetKeySlotForDB() const { return PK11_GetInternalKeySlot(); } |
void FreeSlot(PK11SlotInfo* slot) const { PK11_FreeSlot(slot); } |