Bug 137735

Summary: [GTK] Move touch events handling from Platform to WebKit2
Product: WebKit Reporter: Carlos Garcia Campos <cgarcia>
Component: PlatformAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: berto, commit-queue, gustavo, gyuyoung.kim, mrobinson, pnormand, rakuco, ryuan.choi, sergio, svillar
Priority: P2 Keywords: Gtk
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 137812    
Attachments:
Description Flags
Patch svillar: review+, svillar: commit-queue-

Carlos Garcia Campos
Reported 2014-10-15 01:10:20 PDT
GtkTouchContextHelper is only used by WebKitWebViewBase, since it's the only one that can create touch events. The code can be simplified if the events are processed in the view, and the native touch events are created with the native event and touch points.
Attachments
Patch (18.92 KB, patch)
2014-10-15 01:16 PDT, Carlos Garcia Campos
svillar: review+
svillar: commit-queue-
Carlos Garcia Campos
Comment 1 2014-10-15 01:16:56 PDT
WebKit Commit Bot
Comment 2 2014-10-15 01:18:34 PDT
Thanks for the patch. If this patch contains new public API please make sure it follows the guidelines for new WebKit2 GTK+ API. See http://trac.webkit.org/wiki/WebKitGTK/AddingNewWebKit2API
Sergio Villar Senin
Comment 3 2014-10-17 02:21:26 PDT
Comment on attachment 239857 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=239857&action=review Another file nuked yay! Everything seems to be right, it's a r+ for me, but consider my suggestions before landing. > Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp:806 > +static void webkitWebViewBaseGetTouchPointForEvent(WebKitWebViewBase* webViewBase, GdkEvent* event, Vector<WebPlatformTouchPoint>& touchPoints) Nit: GetTouchPoints > Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp:811 > + for (auto it = priv->touchEvents.begin(); it != priv->touchEvents.end(); ++it) { You can use a modern for loop here. for (auto& touchEvent : priv->touchEvents) > Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp:828 > + } I am not sure a lambda is appropriate here, for me it seems far more confusing than calling a function.
Carlos Garcia Campos
Comment 4 2014-10-17 03:04:43 PDT
Note You need to log in before you can comment on or make changes to this bug.