| Index: third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.h
|
| diff --git a/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.h b/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.h
|
| index 76dbf2cef61c3bddd0471c44a14fd13564b4ceca..eec08fcfb0491c89c735a0a8128defdeeca1da22 100644
|
| --- a/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.h
|
| +++ b/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.h
|
| @@ -102,8 +102,8 @@ private:
|
| }
|
|
|
| // Helper functions for advanceToNextMisspelling()
|
| - void findMisspellings(const String& text, Vector<TextCheckingResult>& results);
|
| - String findFirstMisspellingOrBadGrammar(const Position&, const Position&, int& outFirstFoundOffset);
|
| + Vector<TextCheckingResult> findMisspellings(const String&);
|
| + std::pair<String, int> findFirstMisspelling(const Position&, const Position&);
|
|
|
| void removeMarkers(const VisibleSelection&, DocumentMarker::MarkerTypes);
|
|
|
|
|