Changeset 56141 in webkit


Ignore:
Timestamp:
Mar 17, 2010 7:16:45 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-17 Antti Koivisto <koivisto@iki.fi>

Reviewed by Tor Arne Vestbø.

Fix Qt build with tiled backing store disabled.

  • Api/qwebframe.cpp:
  • Api/qwebframe_p.h:
Location:
trunk/WebKit/qt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebframe.cpp

    r56068 r56141  
    329329}
    330330
     331#if ENABLE(TILED_BACKING_STORE)
    331332void QWebFramePrivate::renderFromTiledBackingStore(GraphicsContext* context, const QRegion& clip)
    332333{
     
    361362    }
    362363}
     364#endif
    363365
    364366void QWebFramePrivate::renderRelativeCoords(GraphicsContext* context, QWebFrame::RenderLayer layer, const QRegion& clip)
  • trunk/WebKit/qt/Api/qwebframe_p.h

    r56068 r56141  
    8585
    8686    void renderRelativeCoords(WebCore::GraphicsContext*, QWebFrame::RenderLayer, const QRegion& clip);
     87#if ENABLE(TILED_BACKING_STORE)
    8788    void renderFromTiledBackingStore(WebCore::GraphicsContext*, const QRegion& clip);
     89#endif
    8890
    8991    bool scrollOverflow(int dx, int dy);
  • trunk/WebKit/qt/ChangeLog

    r56140 r56141  
     12010-03-17  Antti Koivisto  <koivisto@iki.fi>
     2
     3        Reviewed by Tor Arne Vestbø.
     4
     5        Fix Qt build with tiled backing store disabled.
     6
     7        * Api/qwebframe.cpp:
     8        * Api/qwebframe_p.h:
     9
    1102010-03-17  Chang Shu  <chang.shu@nokia.com>
    211
Note: See TracChangeset for help on using the changeset viewer.