| Index: chrome/utility/importer/nss_decryptor_null.h
|
| diff --git a/chrome/browser/importer/nss_decryptor_null.h b/chrome/utility/importer/nss_decryptor_null.h
|
| similarity index 83%
|
| rename from chrome/browser/importer/nss_decryptor_null.h
|
| rename to chrome/utility/importer/nss_decryptor_null.h
|
| index a9e6d3b073308524c436e5134b48f7ddc653c0ba..6e6fb8f92f278afc608438bd80c5d45628f246dd 100644
|
| --- a/chrome/browser/importer/nss_decryptor_null.h
|
| +++ b/chrome/utility/importer/nss_decryptor_null.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_IMPORTER_NSS_DECRYPTOR_NULL_H_
|
| -#define CHROME_BROWSER_IMPORTER_NSS_DECRYPTOR_NULL_H_
|
| +#ifndef CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
|
| +#define CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
|
|
|
| #include <string>
|
| #include <vector>
|
| @@ -24,7 +24,9 @@ struct PasswordForm;
|
| class NSSDecryptor {
|
| public:
|
| NSSDecryptor() {}
|
| - bool Init(const base::FilePath& dll_path, const base::FilePath& db_path) { return false; }
|
| + bool Init(const base::FilePath& dll_path, const base::FilePath& db_path) {
|
| + return false;
|
| + }
|
| string16 Decrypt(const std::string& crypt) const { return string16(); }
|
| void ParseSignons(const std::string& content,
|
| std::vector<content::PasswordForm>* forms) {}
|
| @@ -37,4 +39,4 @@ class NSSDecryptor {
|
| DISALLOW_COPY_AND_ASSIGN(NSSDecryptor);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_IMPORTER_NSS_DECRYPTOR_NULL_H_
|
| +#endif // CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
|
|
|