Index: Source/core/editing/Editor.cpp |
diff --git a/Source/core/editing/Editor.cpp b/Source/core/editing/Editor.cpp |
index d135981ff733d7fcd983fcfb654d468e8f8bfe07..8ed90d0e4abecb9ec083caa3984f64dd44eed30b 100644 |
--- a/Source/core/editing/Editor.cpp |
+++ b/Source/core/editing/Editor.cpp |
@@ -1201,27 +1201,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); |