Changeset 69394 in webkit


Ignore:
Timestamp:
Oct 8, 2010 6:24:13 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-08 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Kenneth Rohde Christiansen.

[EFL] Implement IntRectEfl.cpp
https://bugs.webkit.org/show_bug.cgi?id=47403

Implement IntRect for Efl Port using Eina_Rectangle.

  • platform/graphics/IntRect.h:
  • platform/graphics/efl/IntRectEfl.cpp: (WebCore::IntRect::IntRect): (WebCore::IntRect::operator Eina_Rectangle):
Location:
trunk/WebCore
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r69386 r69394  
     12010-10-08  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [EFL] Implement IntRectEfl.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=47403
     7
     8        Implement IntRect for Efl Port using Eina_Rectangle.
     9
     10        * platform/graphics/IntRect.h:
     11        * platform/graphics/efl/IntRectEfl.cpp:
     12        (WebCore::IntRect::IntRect):
     13        (WebCore::IntRect::operator Eina_Rectangle):
     14
    1152010-10-08  Andreas Kling  <andreas.kling@nokia.com>
    216
  • trunk/WebCore/platform/graphics/IntRect.h

    r62329 r69394  
    5757#elif PLATFORM(HAIKU)
    5858class BRect;
     59#elif PLATFORM(EFL)
     60typedef struct _Eina_Rectangle Eina_Rectangle;
    5961#endif
    6062
     
    159161    explicit IntRect(const BRect&);
    160162    operator BRect() const;
     163#elif PLATFORM(EFL)
     164    explicit IntRect(const Eina_Rectangle&);
     165    operator Eina_Rectangle() const;
    161166#endif
    162167
Note: See TracChangeset for help on using the changeset viewer.