| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index d8e9cc2d44feaec89638cc636ad68aea70ffa36f..9a84310eea887ee06f584161faa6cda263bd166f 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1115,16 +1115,6 @@ void WebLocalFrameImpl::RemoveSpellingMarkers() {
|
| GetFrame()->GetSpellChecker().RemoveSpellingMarkers();
|
| }
|
|
|
| -void WebLocalFrameImpl::SpellingMarkerOffsetsForTest(
|
| - WebVector<unsigned>* offsets) {
|
| - Vector<unsigned> result;
|
| - const DocumentMarkerVector& document_markers =
|
| - GetFrame()->GetDocument()->Markers().Markers();
|
| - for (size_t i = 0; i < document_markers.size(); ++i)
|
| - result.push_back(document_markers[i]->StartOffset());
|
| - offsets->Assign(result);
|
| -}
|
| -
|
| void WebLocalFrameImpl::RemoveSpellingMarkersUnderWords(
|
| const WebVector<WebString>& words) {
|
| Vector<String> converted_words;
|
|
|