Title: [104570] trunk/Source/WebKit2
- Revision
- 104570
- Author
- kenn...@webkit.org
- Date
- 2012-01-10 07:25:20 -0800 (Tue, 10 Jan 2012)
Log Message
Unreviewed potential Mac WK2 build fix.
* UIProcess/API/mac/PageClientImpl.h:
* UIProcess/API/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::doneWithGestureEvent):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (104569 => 104570)
--- trunk/Source/WebKit2/ChangeLog 2012-01-10 15:20:10 UTC (rev 104569)
+++ trunk/Source/WebKit2/ChangeLog 2012-01-10 15:25:20 UTC (rev 104570)
@@ -1,3 +1,11 @@
+2012-01-10 Kenneth Rohde Christiansen <kenn...@webkit.org>
+
+ Unreviewed potential Mac WK2 build fix.
+
+ * UIProcess/API/mac/PageClientImpl.h:
+ * UIProcess/API/mac/PageClientImpl.mm:
+ (WebKit::PageClientImpl::doneWithGestureEvent):
+
2012-01-10 Rafael Brandao <rafael.l...@openbossa.org>
[Qt][WK2] Add font-related API tests for QWebPreferences
Modified: trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h (104569 => 104570)
--- trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h 2012-01-10 15:20:10 UTC (rev 104569)
+++ trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h 2012-01-10 15:25:20 UTC (rev 104570)
@@ -82,7 +82,8 @@
virtual WebCore::FloatRect convertToUserSpace(const WebCore::FloatRect&);
virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&);
virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&);
-
+
+ virtual void doneWithGestureEvent(const WebGestureEvent&, bool wasEventHandled);
virtual void doneWithKeyEvent(const NativeWebKeyboardEvent&, bool wasEventHandled);
virtual PassRefPtr<WebPopupMenuProxy> createPopupMenuProxy(WebPageProxy*);
Modified: trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.mm (104569 => 104570)
--- trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.mm 2012-01-10 15:20:10 UTC (rev 104569)
+++ trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.mm 2012-01-10 15:25:20 UTC (rev 104570)
@@ -298,6 +298,11 @@
return enclosingIntRect(tempRect);
}
+void PageClientImpl::doneWithGestureEvent(const WebGestureEvent&, bool wasEventHandled)
+{
+ notImplemented();
+}
+
void PageClientImpl::doneWithKeyEvent(const NativeWebKeyboardEvent& event, bool eventWasHandled)
{
[m_wkView _doneWithKeyEvent:event.nativeEvent() eventWasHandled:eventWasHandled];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes