1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
6 #define CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
11 #include "base/basictypes.h"
12 #include "base/strings/string16.h"
22 // A NULL wrapper for Firefox NSS decrypt component, for use in builds where
23 // we do not have the NSS library.
27 bool Init(const base::FilePath
& dll_path
, const base::FilePath
& db_path
) {
30 base::string16
Decrypt(const std::string
& crypt
) const {
31 return base::string16();
33 void ParseSignons(const std::string
& content
,
34 std::vector
<autofill::PasswordForm
>* forms
) {}
35 bool ReadAndParseSignons(const base::FilePath
& sqlite_file
,
36 std::vector
<autofill::PasswordForm
>* forms
) {
41 DISALLOW_COPY_AND_ASSIGN(NSSDecryptor
);
44 #endif // CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_