summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/mac/PasteboardHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/mac/PasteboardHelper.h')
-rw-r--r--WebCore/platform/mac/PasteboardHelper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/platform/mac/PasteboardHelper.h b/WebCore/platform/mac/PasteboardHelper.h
index 4ae964d..0e241bb 100644
--- a/WebCore/platform/mac/PasteboardHelper.h
+++ b/WebCore/platform/mac/PasteboardHelper.h
@@ -48,9 +48,9 @@ namespace WebCore {
class PasteboardHelper {
public:
virtual ~PasteboardHelper() {}
- virtual String urlFromPasteboard(const NSPasteboard*, String* title) const = 0;
- virtual String plainTextFromPasteboard(const NSPasteboard*) const = 0;
- virtual DOMDocumentFragment* fragmentFromPasteboard(const NSPasteboard*) const = 0;
+ virtual String urlFromPasteboard(NSPasteboard*, String* title) const = 0;
+ virtual String plainTextFromPasteboard(NSPasteboard*) const = 0;
+ virtual DOMDocumentFragment* fragmentFromPasteboard(NSPasteboard*) const = 0;
virtual NSArray* insertablePasteboardTypes() const = 0;
};