Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Unified Diff: chrome/utility/importer/nss_decryptor_null.h

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/utility/importer/nss_decryptor_mac.h ('k') | chrome/utility/importer/nss_decryptor_system_nss.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/nss_decryptor_null.h
diff --git a/chrome/utility/importer/nss_decryptor_null.h b/chrome/utility/importer/nss_decryptor_null.h
index 6e6fb8f92f278afc608438bd80c5d45628f246dd..82744e6fa58dd16e008dfd81dc4c52c3712ea603 100644
--- a/chrome/utility/importer/nss_decryptor_null.h
+++ b/chrome/utility/importer/nss_decryptor_null.h
@@ -11,12 +11,12 @@
#include "base/basictypes.h"
#include "base/strings/string16.h"
-namespace base {
-class FilePath;
+namespace autofill {
+struct PasswordForm;
}
-namespace content {
-struct PasswordForm;
+namespace base {
+class FilePath;
}
// A NULL wrapper for Firefox NSS decrypt component, for use in builds where
@@ -29,9 +29,9 @@ class NSSDecryptor {
}
string16 Decrypt(const std::string& crypt) const { return string16(); }
void ParseSignons(const std::string& content,
- std::vector<content::PasswordForm>* forms) {}
+ std::vector<autofill::PasswordForm>* forms) {}
bool ReadAndParseSignons(const base::FilePath& sqlite_file,
- std::vector<content::PasswordForm>* forms) {
+ std::vector<autofill::PasswordForm>* forms) {
return false;
}
« no previous file with comments | « chrome/utility/importer/nss_decryptor_mac.h ('k') | chrome/utility/importer/nss_decryptor_system_nss.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698