| Index: chrome/browser/importer/firefox_importer_unittest_utils.h
|
| diff --git a/chrome/browser/importer/firefox_importer_unittest_utils.h b/chrome/browser/importer/firefox_importer_unittest_utils.h
|
| index cb53ccebbe669d9dc853226d7322c928db17bf8f..c989bd6ec921561d15d047950b1a33e655ab4082 100644
|
| --- a/chrome/browser/importer/firefox_importer_unittest_utils.h
|
| +++ b/chrome/browser/importer/firefox_importer_unittest_utils.h
|
| @@ -34,7 +34,7 @@ class FFUnitTestDecryptorProxy {
|
|
|
| // Initialize a decryptor, returns true if the object was
|
| // constructed successfully.
|
| - bool Setup(std::wstring& nss_path);
|
| + bool Setup(const std::wstring& nss_path);
|
|
|
| // This match the parallel functions in NSSDecryptor.
|
| bool DecryptorInit(const std::wstring& dll_path, const std::wstring& db_path);
|
| @@ -67,7 +67,7 @@ FFUnitTestDecryptorProxy::FFUnitTestDecryptorProxy() {
|
| FFUnitTestDecryptorProxy::~FFUnitTestDecryptorProxy() {
|
| }
|
|
|
| -bool FFUnitTestDecryptorProxy::Setup(std::wstring& /* nss_path */) {
|
| +bool FFUnitTestDecryptorProxy::Setup(const std::wstring& /* nss_path */) {
|
| return true;
|
| }
|
|
|
|
|