mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
chore: remove WebKit leftovers after it was renamed to Blink (#35966)
This commit is contained in:
@@ -64,7 +64,7 @@ class SpellCheckClient::SpellcheckRequest {
|
||||
private:
|
||||
std::u16string text_; // Text to be checked in this task.
|
||||
std::vector<Word> word_list_; // List of Words found in text
|
||||
// The interface to send the misspelled ranges to WebKit.
|
||||
// The interface to send the misspelled ranges to Blink.
|
||||
std::unique_ptr<blink::WebTextCheckingCompletion> completion_;
|
||||
};
|
||||
|
||||
|
||||
@@ -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_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user