summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/Pasteboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/Pasteboard.h')
-rw-r--r--WebCore/platform/Pasteboard.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/WebCore/platform/Pasteboard.h b/WebCore/platform/Pasteboard.h
index 7a47f00..c3476a9 100644
--- a/WebCore/platform/Pasteboard.h
+++ b/WebCore/platform/Pasteboard.h
@@ -57,6 +57,11 @@ typedef struct HWND__* HWND;
#include "PasteboardPrivate.h"
#endif
+namespace WTF {
+class CString;
+}
+using WTF::CString;
+
namespace WebCore {
#if PLATFORM(MAC)
@@ -67,7 +72,6 @@ extern NSString *WebURLPboardType;
extern NSString *WebURLsWithTitlesPboardType;
#endif
-class CString;
class DocumentFragment;
class Frame;
class HitTestResult;
@@ -104,7 +108,7 @@ public:
#if PLATFORM(GTK)
void setHelper(PasteboardHelper*);
- PasteboardHelper* m_helper;
+ PasteboardHelper* helper();
#endif
private:
@@ -127,6 +131,10 @@ private:
#if PLATFORM(CHROMIUM)
PasteboardPrivate p;
#endif
+
+#if PLATFORM(GTK)
+ PasteboardHelper* m_helper;
+#endif
};
} // namespace WebCore