| Index: Source/core/editing/Editor.cpp
|
| diff --git a/Source/core/editing/Editor.cpp b/Source/core/editing/Editor.cpp
|
| index 549ba04398b4f2033e020a1f1543fb5a6ea937ba..f7fe1a8e6e9c97c31a65732a17fb072132c88995 100644
|
| --- a/Source/core/editing/Editor.cpp
|
| +++ b/Source/core/editing/Editor.cpp
|
| @@ -1197,27 +1197,6 @@ void Editor::computeAndSetTypingStyle(StylePropertySet* style, EditAction editin
|
| m_frame.selection().setTypingStyle(typingStyle);
|
| }
|
|
|
| -void Editor::textAreaOrTextFieldDidBeginEditing(Element* e)
|
| -{
|
| - spellChecker().didBeginEditing(e);
|
| -}
|
| -
|
| -void Editor::textFieldDidEndEditing(Element* e)
|
| -{
|
| - spellChecker().didEndEditingOnTextField(e);
|
| - client().textFieldDidEndEditing(e);
|
| -}
|
| -
|
| -void Editor::textDidChangeInTextField(Element* e)
|
| -{
|
| - client().textDidChangeInTextField(e);
|
| -}
|
| -
|
| -bool Editor::doTextFieldCommandFromEvent(Element* e, KeyboardEvent* ke)
|
| -{
|
| - return client().doTextFieldCommandFromEvent(e, ke);
|
| -}
|
| -
|
| bool Editor::findString(const String& target, bool forward, bool caseFlag, bool wrapFlag, bool startInSelection)
|
| {
|
| FindOptions options = (forward ? 0 : Backwards) | (caseFlag ? 0 : CaseInsensitive) | (wrapFlag ? WrapAround : 0) | (startInSelection ? StartInSelection : 0);
|
|
|