Searched refs:webResults (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DSpellCheckClient.cpp82 void SpellCheckClient::checkTextOfParagraph(const WebString& text, WebTextCheckingTypeMask mask, WebVector<WebTextCheckingResult>* webResults) argument
104 webResults->assign(results);
/external/chromium_org/third_party/WebKit/Source/web/
H A DEditorClientImpl.cpp713 WebVector<WebTextCheckingResult> webResults;
714 m_webView->spellCheckClient()->checkTextOfParagraph(text, WebTextCheckingTypeGrammar, &webResults);
715 if (!webResults.size())
722 for (size_t i = 0; i < webResults.size(); ++i) {
723 if (webResults[i].type == WebTextCheckingTypeGrammar) {
725 detail.location = webResults[i].location;
726 detail.length = webResults[i].length;
727 detail.userDescription = webResults[i].replacement;

Completed in 109 milliseconds