[Webkit-unassigned] [Bug 53510] [chromium] [WebCore] [android] Touch events are missing time stamps

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 9 15:17:38 PST 2011


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


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

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




--- Comment #2 from Darin Fisher (:fishd, Google) <fishd at chromium.org>  2011-02-09 15:17:38 PST ---
(From update of attachment 80785)
View in context: https://bugs.webkit.org/attachment.cgi?id=80785&action=review

> Source/WebKit/chromium/public/WebTouchPoint.h:41
> +    enum TouchIdentifier {

nit: style for enums in WebKit API headers is like this:

enum Foo {
    FooBar,
    FooBaf,
    FooBah
};

so, this could be:

enum Finger {
    FingerFirst,
    FingerSecond,
    FingerThird
};

-- 
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