| 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;
|
| }
|
|
|
|
|