diff options
Diffstat (limited to 'WebCore/platform/HostWindow.h')
-rw-r--r-- | WebCore/platform/HostWindow.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/WebCore/platform/HostWindow.h b/WebCore/platform/HostWindow.h index 3a024de..80f6bdc 100644 --- a/WebCore/platform/HostWindow.h +++ b/WebCore/platform/HostWindow.h @@ -48,12 +48,15 @@ public: virtual IntPoint screenToWindow(const IntPoint&) const = 0; virtual IntRect windowToScreen(const IntRect&) const = 0; - // Method for retrieving the native window. - virtual PlatformWidget platformWindow() const = 0; + // Method for retrieving the native client of the page. + virtual PlatformPageClient platformPageClient() const = 0; // For scrolling a rect into view recursively. Useful in the cases where a WebView is embedded inside some containing // platform-specific ScrollView. virtual void scrollRectIntoView(const IntRect&, const ScrollView*) const = 0; + + // To notify WebKit of scrollbar mode changes. + virtual void scrollbarsModeDidChange() const = 0; }; } // namespace WebCore |