| Index: content/shell/test_runner/spell_check_client.cc
|
| diff --git a/content/shell/test_runner/spell_check_client.cc b/content/shell/test_runner/spell_check_client.cc
|
| index adb7040f60912a2f6f995f4f8224be14bdfab746..aff9c417217e1d32552221ddd8529b0e6a0f501b 100644
|
| --- a/content/shell/test_runner/spell_check_client.cc
|
| +++ b/content/shell/test_runner/spell_check_client.cc
|
| @@ -115,7 +115,7 @@ void SpellCheckClient::FinishLastTextCheck() {
|
| results.push_back(blink::WebTextCheckingResult(
|
| blink::WebTextDecorationTypeSpelling, offset + misspelled_position,
|
| misspelled_length,
|
| - suggestions.isEmpty() ? blink::WebString() : suggestions[0]));
|
| + suggestions.empty() ? blink::WebString() : suggestions[0]));
|
| text = text.substr(misspelled_position + misspelled_length);
|
| offset += misspelled_position + misspelled_length;
|
| }
|
|
|