diff options
Diffstat (limited to 'WebCore/platform/HostWindow.h')
-rw-r--r-- | WebCore/platform/HostWindow.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/platform/HostWindow.h b/WebCore/platform/HostWindow.h index e7316a7..b0ee653 100644 --- a/WebCore/platform/HostWindow.h +++ b/WebCore/platform/HostWindow.h @@ -31,6 +31,8 @@ namespace WebCore { +class Cursor; + class HostWindow : public Noncopyable { public: virtual ~HostWindow() { } @@ -56,6 +58,9 @@ public: // To notify WebKit of scrollbar mode changes. virtual void scrollbarsModeDidChange() const = 0; + + // Request that the cursor change. + virtual void setCursor(const Cursor&) = 0; }; } // namespace WebCore |