Changeset 107234 in webkit


Ignore:
Timestamp:
Feb 9, 2012 6:35:14 AM (12 years ago)
Author:
jocelyn.turcotte@nokia.com
Message:

[Qt] Remove WebGraphicsLayer::updateTileBuffersRecursively
https://bugs.webkit.org/show_bug.cgi?id=78105

Reviewed by Kenneth Rohde Christiansen.

The method is unused.

  • WebProcess/WebCoreSupport/WebGraphicsLayer.cpp:
  • WebProcess/WebCoreSupport/WebGraphicsLayer.h:

(WebGraphicsLayer):

Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r107233 r107234  
     12012-02-08  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
     2
     3        [Qt] Remove WebGraphicsLayer::updateTileBuffersRecursively
     4        https://bugs.webkit.org/show_bug.cgi?id=78105
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        The method is unused.
     9
     10        * WebProcess/WebCoreSupport/WebGraphicsLayer.cpp:
     11        * WebProcess/WebCoreSupport/WebGraphicsLayer.h:
     12        (WebGraphicsLayer):
     13
    1142012-02-08  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
    215
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.cpp

    r107233 r107234  
    574574}
    575575
    576 void WebGraphicsLayer::updateTileBuffersRecursively()
    577 {
    578     m_mainBackingStore->updateTileBuffers();
    579     for (size_t i = 0; i < children().size(); ++i) {
    580         WebGraphicsLayer* layer = toWebGraphicsLayer(this->children()[i]);
    581         layer->updateTileBuffersRecursively();
    582     }
    583 
    584     if (WebGraphicsLayer* mask = toWebGraphicsLayer(maskLayer()))
    585         mask->updateTileBuffersRecursively();
    586 }
    587 
    588576void WebGraphicsLayer::updateContentBuffers()
    589577{
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.h

    r107233 r107234  
    139139
    140140    bool isReadyForTileBufferSwap() const;
    141     void updateTileBuffersRecursively();
    142141    void updateContentBuffers();
    143142    void purgeBackingStores();
Note: See TracChangeset for help on using the changeset viewer.