Changeset 54639 in webkit


Ignore:
Timestamp:
Feb 10, 2010 7:30:59 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Eric Seidel.

[BREWMP] Typedef DragImageRef
https://bugs.webkit.org/show_bug.cgi?id=34791

Use IImage* as it is the BREW's image type.

  • platform/DragImage.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54638 r54639  
     12010-02-10  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [BREWMP] Typedef DragImageRef
     6        https://bugs.webkit.org/show_bug.cgi?id=34791
     7
     8        Use IImage* as it is the BREW's image type.
     9
     10        * platform/DragImage.h:
     11
    1122010-02-10  Beth Dakin  <bdakin@apple.com>
    213
  • trunk/WebCore/platform/DragImage.h

    r47145 r54639  
    5151#elif PLATFORM(HAIKU)
    5252class BBitmap;
     53#elif PLATFORM(BREWMP)
     54typedef struct IImage IImage;
    5355#endif
    5456
     
    7779#elif PLATFORM(HAIKU)
    7880    typedef BBitmap* DragImageRef;
     81#elif PLATFORM(BREWMP)
     82    typedef IImage* DragImageRef;
    7983#endif
    8084   
Note: See TracChangeset for help on using the changeset viewer.