summaryrefslogtreecommitdiffstats
path: root/chrome/browser/importer/nss_decryptor_null.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/importer/nss_decryptor_null.h')
-rw-r--r--chrome/browser/importer/nss_decryptor_null.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/chrome/browser/importer/nss_decryptor_null.h b/chrome/browser/importer/nss_decryptor_null.h
index 040df33..4fd6934 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;
}