Changeset 90644 in webkit


Ignore:
Timestamp:
Jul 8, 2011 11:06:20 AM (13 years ago)
Author:
benjamin.poulain@nokia.com
Message:

[Qt][WK2] Get rid of the check for TILED_BACKING_STORE in Qt
https://bugs.webkit.org/show_bug.cgi?id=64175

Reviewed by Kenneth Rohde Christiansen.

Qt no longer supports building WebKit2 without TILED_BACKING_STORE.

  • UIProcess/API/qt/qtouchwebpage.cpp:

(QTouchWebPagePrivate::onScaleChanged):

  • UIProcess/qt/QtWebPageProxy.cpp:

(QtWebPageProxy::setResizesToContentsUsingLayoutSize):

  • UIProcess/qt/TiledDrawingAreaProxyQt.cpp:
  • UIProcess/qt/TiledDrawingAreaTileQt.cpp:
  • WebProcess/WebPage/qt/TiledDrawingAreaQt.cpp:
Location:
trunk/Source/WebKit2
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r90629 r90644  
     12011-07-08  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        [Qt][WK2] Get rid of the check for TILED_BACKING_STORE in Qt
     4        https://bugs.webkit.org/show_bug.cgi?id=64175
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Qt no longer supports building WebKit2 without TILED_BACKING_STORE.
     9
     10        * UIProcess/API/qt/qtouchwebpage.cpp:
     11        (QTouchWebPagePrivate::onScaleChanged):
     12        * UIProcess/qt/QtWebPageProxy.cpp:
     13        (QtWebPageProxy::setResizesToContentsUsingLayoutSize):
     14        * UIProcess/qt/TiledDrawingAreaProxyQt.cpp:
     15        * UIProcess/qt/TiledDrawingAreaTileQt.cpp:
     16        * WebProcess/WebPage/qt/TiledDrawingAreaQt.cpp:
     17
    1182011-07-08  Benjamin Poulain  <benjamin@webkit.org>
    219
  • trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebpage.cpp

    r90458 r90644  
    180180void QTouchWebPagePrivate::onScaleChanged()
    181181{
    182 #if ENABLE(TILED_BACKING_STORE)
    183182    if (!m_isChangingScale)
    184183        m_scaleCommitTimer.start(0.1, q);
    185 #endif
    186184}
    187185
  • trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.cpp

    r90577 r90644  
    622622void QtWebPageProxy::setResizesToContentsUsingLayoutSize(const QSize& targetLayoutSize)
    623623{
    624 #if ENABLE(TILED_BACKING_STORE)
    625624    m_webPageProxy->setResizesToContentsUsingLayoutSize(targetLayoutSize);
    626 #endif
    627625}
    628626
  • trunk/Source/WebKit2/UIProcess/qt/TiledDrawingAreaProxyQt.cpp

    r90458 r90644  
    2626#include "config.h"
    2727#include "TiledDrawingAreaProxy.h"
    28 
    29 #if ENABLE(TILED_BACKING_STORE)
    3028
    3129#include "ShareableBitmap.h"
     
    6260
    6361} // namespace WebKit
    64 
    65 #endif
  • trunk/Source/WebKit2/UIProcess/qt/TiledDrawingAreaTileQt.cpp

    r88046 r90644  
    2626#include "config.h"
    2727#include "TiledDrawingAreaTile.h"
    28 
    29 #if ENABLE(TILED_BACKING_STORE)
    3028
    3129#include "GraphicsContext.h"
     
    166164
    167165}
    168 #endif
  • trunk/Source/WebKit2/WebProcess/WebPage/qt/TiledDrawingAreaQt.cpp

    r87160 r90644  
    2727#include "TiledDrawingArea.h"
    2828
    29 #if ENABLE(TILED_BACKING_STORE)
    30 
    3129#include "ShareableBitmap.h"
    3230#include "WebPage.h"
     
    5351
    5452} // namespace WebKit
    55 
    56 #endif // TILED_BACKING_STORE
Note: See TracChangeset for help on using the changeset viewer.