summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/editor_client_impl.cc17
-rw-r--r--webkit/glue/editor_client_impl.h8
2 files changed, 0 insertions, 25 deletions
diff --git a/webkit/glue/editor_client_impl.cc b/webkit/glue/editor_client_impl.cc
index 04a9ac5..9bdfb43 100644
--- a/webkit/glue/editor_client_impl.cc
+++ b/webkit/glue/editor_client_impl.cc
@@ -586,23 +586,6 @@ void EditorClientImpl::textWillBeDeletedInTextField(WebCore::Element*) {
void EditorClientImpl::textDidChangeInTextArea(WebCore::Element*) {
}
-#if defined(OS_MACOSX)
-// TODO(pinkerton): implement these when we get to copy/paste
-NSData* EditorClientImpl::dataForArchivedSelection(WebCore::Frame*) {
- NOTIMPLEMENTED();
-}
-
-NSString* EditorClientImpl::userVisibleString(NSURL*) {
- NOTIMPLEMENTED();
-}
-
-#ifdef BUILDING_ON_TIGER
-NSArray* EditorClientImpl::pasteboardTypesForSelection(WebCore::Frame*) {
- NOTIMPLEMENTED();
-}
-#endif
-#endif
-
void EditorClientImpl::ignoreWordInSpellDocument(const WebCore::String&) {
NOTIMPLEMENTED();
}
diff --git a/webkit/glue/editor_client_impl.h b/webkit/glue/editor_client_impl.h
index 0ef68c58..189a9af 100644
--- a/webkit/glue/editor_client_impl.h
+++ b/webkit/glue/editor_client_impl.h
@@ -84,14 +84,6 @@ class EditorClientImpl : public WebCore::EditorClient {
virtual void textWillBeDeletedInTextField(WebCore::Element*);
virtual void textDidChangeInTextArea(WebCore::Element*);
-#if defined(OS_MACOSX)
- virtual NSData* dataForArchivedSelection(WebCore::Frame*);
- virtual NSString* userVisibleString(NSURL*);
-#ifdef BUILDING_ON_TIGER
- virtual NSArray* pasteboardTypesForSelection(WebCore::Frame*);
-#endif
-#endif
-
virtual void ignoreWordInSpellDocument(const WebCore::String&);
virtual void learnWord(const WebCore::String&);
virtual void checkSpellingOfString(const UChar*, int length,