summaryrefslogtreecommitdiffstats
path: root/chrome/browser/importer/nss_decryptor_system_nss.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/importer/nss_decryptor_system_nss.h')
-rw-r--r--chrome/browser/importer/nss_decryptor_system_nss.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/chrome/browser/importer/nss_decryptor_system_nss.h b/chrome/browser/importer/nss_decryptor_system_nss.h
index e055fa9..c125da9 100644
--- a/chrome/browser/importer/nss_decryptor_system_nss.h
+++ b/chrome/browser/importer/nss_decryptor_system_nss.h
@@ -14,11 +14,9 @@
class FilePath;
-namespace webkit {
-namespace forms {
+namespace content {
struct PasswordForm;
}
-}
// A wrapper for Firefox NSS decrypt component.
class NSSDecryptor {
@@ -37,13 +35,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:
// Does not actually free the slot, since we'll free it when NSSDecryptor is
// destroyed.