Changeset 109074 in webkit


Ignore:
Timestamp:
Feb 27, 2012 9:49:02 PM (12 years ago)
Author:
leo.yang@torchmobile.com.cn
Message:

[BlackBerry] Upstream the BlackBerry change to platform/graphics/IntRect.h
https://bugs.webkit.org/show_bug.cgi?id=79732

Reviewed by Antonio Gomes.

Add conversion convenience between WebCore::IntRect and BlackBerry::Platform::IntRect.

The porting can't be built yet, no new tests.

  • platform/graphics/IntRect.h:

(Platform):
(IntRect):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109073 r109074  
     12012-02-27  Leo Yang  <leo.yang@torchmobile.com.cn>
     2
     3        [BlackBerry] Upstream the BlackBerry change to platform/graphics/IntRect.h
     4        https://bugs.webkit.org/show_bug.cgi?id=79732
     5
     6        Reviewed by Antonio Gomes.
     7
     8        Add conversion convenience between WebCore::IntRect and BlackBerry::Platform::IntRect.
     9
     10        The porting can't be built yet, no new tests.
     11
     12        * platform/graphics/IntRect.h:
     13        (Platform):
     14        (IntRect):
     15
    1162012-02-27  Emil A Eklund  <eae@chromium.org>
    217
  • trunk/Source/WebCore/platform/graphics/IntRect.h

    r108423 r109074  
    5454#elif PLATFORM(EFL)
    5555typedef struct _Eina_Rectangle Eina_Rectangle;
     56#elif PLATFORM(BLACKBERRY)
     57namespace BlackBerry {
     58namespace Platform {
     59class IntRect;
     60}
     61}
    5662#endif
    5763
     
    215221#endif
    216222
     223#if PLATFORM(BLACKBERRY)
     224    IntRect(const BlackBerry::Platform::IntRect&);
     225    operator BlackBerry::Platform::IntRect() const;
     226#endif
     227
    217228private:
    218229    IntPoint m_location;
Note: See TracChangeset for help on using the changeset viewer.