Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(680)

Unified Diff: third_party/WebKit/Source/web/SpellCheckerClientImpl.cpp

Issue 2177023002: Remove spellchecker feedback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/SpellCheckerClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/SpellCheckerClientImpl.cpp b/third_party/WebKit/Source/web/SpellCheckerClientImpl.cpp
index 9bc31d279ad434241a495d263baa955724e83372..9d9ca3062a260b82c650b2e3636d90d8d6e71c53 100644
--- a/third_party/WebKit/Source/web/SpellCheckerClientImpl.cpp
+++ b/third_party/WebKit/Source/web/SpellCheckerClientImpl.cpp
@@ -142,9 +142,7 @@ void SpellCheckerClientImpl::requestCheckingOfString(TextCheckingRequest* reques
if (!m_webView->spellCheckClient())
return;
const String& text = request->data().text();
- const Vector<uint32_t>& markers = request->data().markers();
- const Vector<unsigned>& markerOffsets = request->data().offsets();
- m_webView->spellCheckClient()->requestCheckingOfText(text, markers, markerOffsets, new WebTextCheckingCompletionImpl(request));
+ m_webView->spellCheckClient()->requestCheckingOfText(text, new WebTextCheckingCompletionImpl(request));
}
void SpellCheckerClientImpl::updateSpellingUIWithMisspelledWord(const String& misspelledWord)
« no previous file with comments | « third_party/WebKit/Source/web/ContextMenuClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebTextCheckingResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698