Changeset 54204 in webkit


Ignore:
Timestamp:
Feb 1, 2010 10:19:37 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Eric Seidel.

[BREWMP] Add conversions between IntSize and AEESize
https://bugs.webkit.org/show_bug.cgi?id=34197

Make it easy to convert between IntSize and AEESize.

  • platform/graphics/IntSize.h:
  • platform/graphics/brew/IntSizeBrew.cpp: Added. (WebCore::IntSize::IntSize): (WebCore::IntSize::operator AEESize):
Location:
trunk/WebCore
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54203 r54204  
     12010-02-01  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [BREWMP] Add conversions between IntSize and AEESize
     6        https://bugs.webkit.org/show_bug.cgi?id=34197
     7
     8        Make it easy to convert between IntSize and AEESize.
     9
     10        * platform/graphics/IntSize.h:
     11        * platform/graphics/brew/IntSizeBrew.cpp: Added.
     12        (WebCore::IntSize::IntSize):
     13        (WebCore::IntSize::operator AEESize):
     14
    1152010-02-01  Stephen White  <senorblanco@chromium.org>
    216
  • trunk/WebCore/platform/graphics/IntSize.h

    r53637 r54204  
    5454#if PLATFORM(WX)
    5555class wxSize;
     56#endif
     57
     58#if PLATFORM(BREWMP)
     59typedef struct AEESize AEESize;
    5660#endif
    5761
     
    131135#endif
    132136
     137#if PLATFORM(BREWMP)
     138    IntSize(const AEESize&);
     139    operator AEESize() const;
     140#endif
     141
    133142private:
    134143    int m_width, m_height;
Note: See TracChangeset for help on using the changeset viewer.