Title: [187132] trunk/Source/WebKit/win
Revision
187132
Author
commit-qu...@webkit.org
Date
2015-07-21 16:14:43 -0700 (Tue, 21 Jul 2015)

Log Message

[Win] Add needTouchEvents() stub to WebChromeClient.h for a successful build with ENABLE_TOUCH_EVENTS=ON
https://bugs.webkit.org/show_bug.cgi?id=147141

Patch by Sungmann Cho <sungmann....@navercorp.com> on 2015-07-21
Reviewed by Darin Adler.

* WebCoreSupport/WebChromeClient.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (187131 => 187132)


--- trunk/Source/WebKit/win/ChangeLog	2015-07-21 22:35:57 UTC (rev 187131)
+++ trunk/Source/WebKit/win/ChangeLog	2015-07-21 23:14:43 UTC (rev 187132)
@@ -1,3 +1,12 @@
+2015-07-21  Sungmann Cho  <sungmann....@navercorp.com>
+
+        [Win] Add needTouchEvents() stub to WebChromeClient.h for a successful build with ENABLE_TOUCH_EVENTS=ON
+        https://bugs.webkit.org/show_bug.cgi?id=147141
+
+        Reviewed by Darin Adler.
+
+        * WebCoreSupport/WebChromeClient.h:
+
 2015-07-21  Per Arne Vollan  <pe...@outlook.com>
 
         WinLauncher does not start on WinXP.

Modified: trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.h (187131 => 187132)


--- trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.h	2015-07-21 22:35:57 UTC (rev 187131)
+++ trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.h	2015-07-21 23:14:43 UTC (rev 187132)
@@ -160,6 +160,10 @@
     virtual void exitFullScreenForElement(WebCore::Element*);
 #endif
 
+#if ENABLE(TOUCH_EVENTS)
+    virtual void needTouchEvents(bool) override { }
+#endif
+
     virtual void wheelEventHandlersChanged(bool) override { }
 
     WebView* webView() { return m_webView; }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to