Changeset 54583 in webkit


Ignore:
Timestamp:
Feb 9, 2010 7:45:20 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-09 Kwang Yul Seo <skyul@company100.net>

Reviewed by Adam Barth.

[BREWMP] Port PlatformMouseEvent
https://bugs.webkit.org/show_bug.cgi?id=34600

Retrieve the event type, position, key modifiers, time stamp
and click count from AEEEvent.

  • platform/PlatformMouseEvent.h:
  • platform/brew/PlatformMouseEventBrew.cpp: Added. (WebCore::PlatformMouseEvent::PlatformMouseEvent):
Location:
trunk/WebCore
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54582 r54583  
     12010-02-09  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Adam Barth.
     4
     5        [BREWMP] Port PlatformMouseEvent
     6        https://bugs.webkit.org/show_bug.cgi?id=34600
     7
     8        Retrieve the event type, position, key modifiers, time stamp
     9        and click count from AEEEvent.
     10
     11        * platform/PlatformMouseEvent.h:
     12        * platform/brew/PlatformMouseEventBrew.cpp: Added.
     13        (WebCore::PlatformMouseEvent::PlatformMouseEvent):
     14
    1152010-02-09  Avi Drissman  <avi@chromium.org>
    216
  • trunk/WebCore/platform/PlatformMouseEvent.h

    r52063 r54583  
    5454#if PLATFORM(HAIKU)
    5555class BMessage;
     56#endif
     57
     58#if PLATFORM(BREWMP)
     59typedef unsigned short    uint16;
     60typedef unsigned long int uint32;
     61#define AEEEvent uint16
    5662#endif
    5763
     
    144150#endif
    145151
     152#if PLATFORM(BREWMP)
     153        PlatformMouseEvent(AEEEvent, uint16 wParam, uint32 dwParam);
     154#endif
     155
    146156    protected:
    147157        IntPoint m_position;
Note: See TracChangeset for help on using the changeset viewer.