Changeset 150820 in webkit


Ignore:
Timestamp:
May 28, 2013 11:46:05 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] GraphicsContext: add missing definitions.
https://bugs.webkit.org/show_bug.cgi?id=115515

Patch by Alberto Garcia <agarcia@igalia.com> on 2013-05-28
Reviewed by Rob Buis.

  • platform/graphics/GraphicsContext.h:

(Graphics):
Add definition for PlatformGraphicsContext.

  • platform/graphics/blackberry/GraphicsContextBlackBerry.cpp:

Include RoundedRect.h

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r150817 r150820  
     12013-05-28  Alberto Garcia  <agarcia@igalia.com>
     2
     3        [BlackBerry] GraphicsContext: add missing definitions.
     4        https://bugs.webkit.org/show_bug.cgi?id=115515
     5
     6        Reviewed by Rob Buis.
     7
     8        * platform/graphics/GraphicsContext.h:
     9        (Graphics):
     10        Add definition for PlatformGraphicsContext.
     11        * platform/graphics/blackberry/GraphicsContextBlackBerry.cpp:
     12        Include RoundedRect.h
     13
    1142013-05-28  Arvid Nilsson  <anilsson@rim.com>
    215
  • trunk/Source/WebCore/platform/graphics/GraphicsContext.h

    r150730 r150820  
    5252#elif OS(WINCE)
    5353typedef struct HDC__ PlatformGraphicsContext;
     54#elif PLATFORM(BLACKBERRY)
     55namespace BlackBerry {
     56namespace Platform {
     57namespace Graphics {
     58class PlatformGraphicsContext;
     59}
     60}
     61}
     62using BlackBerry::Platform::Graphics::PlatformGraphicsContext;
    5463#else
    5564typedef void PlatformGraphicsContext;
  • trunk/Source/WebCore/platform/graphics/blackberry/GraphicsContextBlackBerry.cpp

    r149980 r150820  
    2424#include "KURL.h"
    2525#include "NotImplemented.h"
     26#include "RoundedRect.h"
    2627#include "TransformationMatrix.h"
    2728
Note: See TracChangeset for help on using the changeset viewer.