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

Side by Side Diff: chrome/utility/importer/nss_decryptor_null.h

Issue 881213004: Support building BoringSSL with NSS certificates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « chrome/utility/importer/nss_decryptor.h ('k') | components/webcrypto/test/test_helpers.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
6 #define CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/basictypes.h"
12 #include "base/strings/string16.h"
13
14 namespace autofill {
15 struct PasswordForm;
16 }
17
18 namespace base {
19 class FilePath;
20 }
21
22 // A NULL wrapper for Firefox NSS decrypt component, for use in builds where
23 // we do not have the NSS library.
24 class NSSDecryptor {
25 public:
26 NSSDecryptor() {}
27 bool Init(const base::FilePath& dll_path, const base::FilePath& db_path) {
28 return false;
29 }
30 base::string16 Decrypt(const std::string& crypt) const {
31 return base::string16();
32 }
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) {
37 return false;
38 }
39
40 private:
41 DISALLOW_COPY_AND_ASSIGN(NSSDecryptor);
42 };
43
44 #endif // CHROME_UTILITY_IMPORTER_NSS_DECRYPTOR_NULL_H_
OLDNEW
« no previous file with comments | « chrome/utility/importer/nss_decryptor.h ('k') | components/webcrypto/test/test_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698