Changeset 86433 in webkit


Ignore:
Timestamp:
May 13, 2011 8:09:20 AM (13 years ago)
Author:
zecke@webkit.org
Message:

[android] Forward declare types for PlatformWidget and DragImage

https://bugs.webkit.org/show_bug.cgi?id=59890

This is fixing the compilation of files that include Widget.h or
DragImage.h.

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r86430 r86433  
     12011-05-01  Holger Hans Peter Freyther  <holger@moiji-mobile.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        [android] Forward declare types for PlatformWidget and DragImage
     6        https://bugs.webkit.org/show_bug.cgi?id=59890
     7
     8        This is a simple build fix.
     9
     10        * platform/DragImage.h:
     11        * platform/Widget.h:
     12
    1132011-05-06  Pavel Podivilov  <podivilov@chromium.org>
    214
  • trunk/Source/WebCore/platform/DragImage.h

    r77870 r86433  
    8181#elif PLATFORM(BREWMP)
    8282    typedef IImage* DragImageRef;
    83 #elif PLATFORM(EFL)
     83#elif PLATFORM(EFL) || PLATFORM(ANDROID)
    8484    typedef void* DragImageRef;
    8585#endif
  • trunk/Source/WebCore/platform/Widget.h

    r86312 r86433  
    9595#endif
    9696
     97#if PLATFORM(ANDROID)
     98class WebCoreViewBridge;
     99typedef WebCoreViewBridge* PlatformWidget;
     100#endif
     101
    97102#if PLATFORM(QT)
    98103class QWebPageClient;
Note: See TracChangeset for help on using the changeset viewer.