| Index: webkit/tools/test_shell/mock_spellcheck.cc
|
| diff --git a/webkit/tools/test_shell/mock_spellcheck.cc b/webkit/tools/test_shell/mock_spellcheck.cc
|
| index fd53401685a8493407f9b12c37e708b13c976068..cc05c1620dc7ef829b471e6a4f9065add1f010dc 100644
|
| --- a/webkit/tools/test_shell/mock_spellcheck.cc
|
| +++ b/webkit/tools/test_shell/mock_spellcheck.cc
|
| @@ -125,3 +125,9 @@ bool MockSpellCheck::InitializeIfNeeded() {
|
| // function always returns false.
|
| return false;
|
| }
|
| +
|
| +void MockSpellCheck::FillSuggestions(const string16& word,
|
| + std::vector<string16>* suggestions) {
|
| + if (word == ASCIIToUTF16("wellcome"))
|
| + suggestions->push_back(ASCIIToUTF16("welcome"));
|
| +}
|
|
|