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

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

Issue 306123004: NSSDecryptor::ReadAndParseSignons() - improved password form scheme detection, (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fix, temporary file fix in unittest Created 6 years, 6 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_UNITTEST_UTILS_H_ 5 #ifndef CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_UNITTEST_UTILS_H_
6 #define CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_UNITTEST_UTILS_H_ 6 #define CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_UNITTEST_UTILS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/file_util.h"
9 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
10 #include "base/process/process_handle.h" 11 #include "base/process/process_handle.h"
11 #include "chrome/utility/importer/nss_decryptor.h" 12 #include "chrome/utility/importer/nss_decryptor.h"
13 #include "components/autofill/core/common/password_form.h"
12 14
13 class FFDecryptorServerChannelListener; 15 class FFDecryptorServerChannelListener;
14 16
15 namespace base { 17 namespace base {
16 class MessageLoopForIO; 18 class MessageLoopForIO;
17 } 19 }
18 20
19 namespace IPC { 21 namespace IPC {
20 class Channel; 22 class Channel;
21 } // namespace IPC 23 } // namespace IPC
(...skipping 15 matching lines...) Expand all
37 virtual ~FFUnitTestDecryptorProxy(); 39 virtual ~FFUnitTestDecryptorProxy();
38 40
39 // Initialize a decryptor, returns true if the object was 41 // Initialize a decryptor, returns true if the object was
40 // constructed successfully. 42 // constructed successfully.
41 bool Setup(const base::FilePath& nss_path); 43 bool Setup(const base::FilePath& nss_path);
42 44
43 // This match the parallel functions in NSSDecryptor. 45 // This match the parallel functions in NSSDecryptor.
44 bool DecryptorInit(const base::FilePath& dll_path, 46 bool DecryptorInit(const base::FilePath& dll_path,
45 const base::FilePath& db_path); 47 const base::FilePath& db_path);
46 base::string16 Decrypt(const std::string& crypt); 48 base::string16 Decrypt(const std::string& crypt);
49 std::vector<autofill::PasswordForm> ParseSignons(
50 const base::FilePath& signons_path);
47 51
48 private: 52 private:
49 #if defined(OS_MACOSX) 53 #if defined(OS_MACOSX)
50 // Blocks until either a timeout is reached, or until the client process 54 // Blocks until either a timeout is reached, or until the client process
51 // responds to an IPC message. 55 // responds to an IPC message.
52 // Returns true if a reply was received successfully and false if the 56 // Returns true if a reply was received successfully and false if the
53 // the operation timed out. 57 // the operation timed out.
54 bool WaitForClientResponse(); 58 bool WaitForClientResponse();
55 59
56 base::ProcessHandle child_process_; 60 base::ProcessHandle child_process_;
(...skipping 20 matching lines...) Expand all
77 } 81 }
78 82
79 bool FFUnitTestDecryptorProxy::DecryptorInit(const base::FilePath& dll_path, 83 bool FFUnitTestDecryptorProxy::DecryptorInit(const base::FilePath& dll_path,
80 const base::FilePath& db_path) { 84 const base::FilePath& db_path) {
81 return decryptor_.Init(dll_path, db_path); 85 return decryptor_.Init(dll_path, db_path);
82 } 86 }
83 87
84 base::string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) { 88 base::string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
85 return decryptor_.Decrypt(crypt); 89 return decryptor_.Decrypt(crypt);
86 } 90 }
91
92 std::vector<autofill::PasswordForm> FFUnitTestDecryptorProxy::ParseSignons(
93 const base::FilePath& signons_path) {
94 std::vector<autofill::PasswordForm> out_vec;
Ilya Sherman 2014/06/13 21:57:03 nit: Please avoid abbreviations in variable names.
95 if (decryptor_.ReadAndParseSignons(signons_path, &out_vec))
96 return out_vec;
97
98 return std::vector<autofill::PasswordForm>();
99 }
100
87 #endif // !OS_MACOSX 101 #endif // !OS_MACOSX
88 102
89 #endif // CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_UNITTEST_UTILS_H_ 103 #endif // CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_UNITTEST_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698