| 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)
|
|
|