|
@@ -89,7 +89,7 @@ class SpellCheckClient : public blink::WebSpellCheckPanelHostClient,
|
|
|
SpellcheckCharAttribute character_attributes_;
|
|
|
|
|
|
// Represents word iterators used in this spellchecker. The |text_iterator_|
|
|
|
- // splits text provided by WebKit into words, contractions, or concatenated
|
|
|
+ // splits text provided by Blink into words, contractions, or concatenated
|
|
|
// words. The |contraction_iterator_| splits a concatenated word extracted by
|
|
|
// |text_iterator_| into word components so we can treat a concatenated word
|
|
|
// consisting only of correct words as a correct word.
|
|
@@ -97,7 +97,7 @@ class SpellCheckClient : public blink::WebSpellCheckPanelHostClient,
|
|
|
SpellcheckWordIterator contraction_iterator_;
|
|
|
|
|
|
// The parameters of a pending background-spellchecking request.
|
|
|
- // (When WebKit sends two or more requests, we cancel the previous
|
|
|
+ // (When Blink sends two or more requests, we cancel the previous
|
|
|
// requests so we do not have to use vectors.)
|
|
|
std::unique_ptr<SpellcheckRequest> pending_request_param_;
|
|
|
|