diff options
Diffstat (limited to 'Source/WebKit2/WebProcess/WebPage/WebPage.h')
-rw-r--r-- | Source/WebKit2/WebProcess/WebPage/WebPage.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/WebKit2/WebProcess/WebPage/WebPage.h b/Source/WebKit2/WebProcess/WebPage/WebPage.h index d234a1da4..4d20421e0 100644 --- a/Source/WebKit2/WebProcess/WebPage/WebPage.h +++ b/Source/WebKit2/WebProcess/WebPage/WebPage.h @@ -131,6 +131,7 @@ class WebFrame; class WebFullScreenManager; class WebImage; class WebInspector; +class WebInspectorClient; class WebKeyboardEvent; class WebMouseEvent; class WebNotificationClient; @@ -403,6 +404,10 @@ public: SandboxExtensionTracker& sandboxExtensionTracker() { return m_sandboxExtensionTracker; } +#if PLATFORM(EFL) + void setThemePath(const String&); +#endif + #if PLATFORM(QT) void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd); void confirmComposition(const String& text, int64_t selectionStart, int64_t selectionLength); @@ -445,6 +450,7 @@ public: #elif PLATFORM(GTK) void updateAccessibilityTree(); + bool handleMousePressedEvent(const WebCore::PlatformMouseEvent&); #if USE(TEXTURE_MAPPER_GL) void widgetMapped(int64_t nativeWindowHandle); #endif @@ -871,6 +877,7 @@ private: #if ENABLE(PAGE_VISIBILITY_API) WebCore::PageVisibilityState m_visibilityState; #endif + WebInspectorClient* m_inspectorClient; }; } // namespace WebKit |