Index: chrome/browser/importer/nss_decryptor_null.h |
diff --git a/chrome/browser/importer/nss_decryptor_null.h b/chrome/browser/importer/nss_decryptor_null.h |
index 040df33c90627aa16fd061c4a3c181de900e4999..4fd6934534842f7ba72303b5c4d0473c4809ecd2 100644 |
--- a/chrome/browser/importer/nss_decryptor_null.h |
+++ b/chrome/browser/importer/nss_decryptor_null.h |
@@ -13,11 +13,9 @@ |
class FilePath; |
-namespace webkit { |
-namespace forms { |
+namespace content { |
struct PasswordForm; |
} |
-} |
// A NULL wrapper for Firefox NSS decrypt component, for use in builds where |
// we do not have the NSS library. |
@@ -27,9 +25,9 @@ class NSSDecryptor { |
bool Init(const FilePath& dll_path, const FilePath& db_path) { return false; } |
string16 Decrypt(const std::string& crypt) const { return string16(); } |
void ParseSignons(const std::string& content, |
- std::vector<webkit::forms::PasswordForm>* forms) {} |
+ std::vector<content::PasswordForm>* forms) {} |
bool ReadAndParseSignons(const FilePath& sqlite_file, |
- std::vector<webkit::forms::PasswordForm>* forms) { |
+ std::vector<content::PasswordForm>* forms) { |
return false; |
} |