diff options
Diffstat (limited to 'chrome/browser/spellchecker/spellcheck_custom_dictionary.cc')
-rw-r--r-- | chrome/browser/spellchecker/spellcheck_custom_dictionary.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc b/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc index eec86b5..55390f9 100644 --- a/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc +++ b/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc @@ -68,9 +68,10 @@ ChecksumStatus LoadFile(const base::FilePath& file_path, if (checksum != base::MD5String(contents)) return INVALID_CHECKSUM; } - base::TrimWhitespaceASCII(contents, base::TRIM_ALL, &contents); - std::vector<std::string> word_list; - base::SplitString(contents, '\n', &word_list); + + std::vector<std::string> word_list = base::SplitString( + base::TrimWhitespaceASCII(contents, base::TRIM_ALL), "\n", + base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); words->insert(word_list.begin(), word_list.end()); return VALID_CHECKSUM; } |