[Webkit-unassigned] [Bug 35691] [Chromium] Adding new platform types for touch events and touch points.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 3 13:31:23 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=35691


Darin Fisher (:fishd, Google) <fishd at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #49923|review?, commit-queue?      |review-
               Flag|                            |




--- Comment #3 from Darin Fisher (:fishd, Google) <fishd at chromium.org>  2010-03-03 13:31:23 PST ---
(From update of attachment 49923)
> +++ b/WebKit/chromium/public/WebInputEvent.h
>  
> +// WebTouchEvent --------------------------------------------------------------
> +
> +class WebTouchEvent : public WebInputEvent {
> +public:
> +    static const int touchPointCountCap = 4;

nit: CountCap -> LengthCap for consistency with WebKeyboardEvent


> +
> +    int modifiers;
> +    int touchPointCount;
> +    WebTouchPoint touchPoints[touchPointCountCap];

Is touchPointCount necessary?  Perhaps you could use
touchPoints[i].state == WebTouchPoint::Undefined as
an array terminator instead?

WebInputEvent already defines a modifiers member var,
so I'm surprised to see it repeated here.


> +++ b/WebKit/chromium/public/WebTouchPoint.h
...
> +#include <string.h>

^^^ this include seems unnecessary


> +namespace WebKit {
> +
> +class WebTouchPoint {
> +public:
> +    WebTouchPoint()
> +        : id(0)
> +        , state(Undefined)
> +        , screenPosition(0, 0)
> +        , position(0, 0) { }
> +
> +    enum State {
> +        Undefined,
> +        TouchReleased,
> +        TouchPressed,
> +        TouchMoved,
> +        TouchStationary,
> +        TouchCancelled,

How about StateReleased, StatePressed, etc. to better
match the name of the enum?

Since these enum values will primarily be written w/
the WebTouchPoint prefix, it seems unnecessary to have
the word "Touch" in the names of the enum values.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list