| Index: chrome/utility/importer/nss_decryptor.cc
|
| diff --git a/chrome/utility/importer/nss_decryptor.cc b/chrome/utility/importer/nss_decryptor.cc
|
| index 01bdb0ab351fa4753b7e661273e21874fca4cbce..3f5a993849bb68ead4ff7ce8e0ce804e5d562205 100644
|
| --- a/chrome/utility/importer/nss_decryptor.cc
|
| +++ b/chrome/utility/importer/nss_decryptor.cc
|
| @@ -121,8 +121,8 @@ void NSSDecryptor::ParseSignons(
|
| forms->clear();
|
|
|
| // Splits the file content into lines.
|
| - std::vector<std::string> lines;
|
| - base::SplitString(content, '\n', &lines);
|
| + std::vector<std::string> lines = base::SplitString(
|
| + content, "\n", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
|
|
|
| // The first line is the file version. We skip the unknown versions.
|
| if (lines.empty())
|
|
|