Changeset 146285 in webkit


Ignore:
Timestamp:
Mar 19, 2013, 6:10:47 PM (13 years ago)
Author:
Simon Fraser
Message:

Make RLC::haveNonMainLayersWithTiledBacking() public and fix the name
https://bugs.webkit.org/show_bug.cgi?id=112763

Reviewed by Tim Horton.

Downstream code needs to call hasNonMainLayersWithTiledBacking().

  • rendering/RenderLayerCompositor.h:

(WebCore::RenderLayerCompositor::hasNonMainLayersWithTiledBacking):
(RenderLayerCompositor):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r146284 r146285  
     12013-03-19  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Make RLC::haveNonMainLayersWithTiledBacking() public and fix the name
     4        https://bugs.webkit.org/show_bug.cgi?id=112763
     5
     6        Reviewed by Tim Horton.
     7
     8        Downstream code needs to call hasNonMainLayersWithTiledBacking().
     9
     10        * rendering/RenderLayerCompositor.h:
     11        (WebCore::RenderLayerCompositor::hasNonMainLayersWithTiledBacking):
     12        (RenderLayerCompositor):
     13
    1142013-03-19  David Levin  <levin@chromium.org>
    215
  • trunk/Source/WebCore/rendering/RenderLayerCompositor.h

    r145563 r146285  
    273273    bool viewHasTransparentBackground(Color* backgroundColor = 0) const;
    274274
     275    bool hasNonMainLayersWithTiledBacking() const { return m_layersWithTiledBackingCount; }
     276
    275277    CompositingReasons reasonsForCompositing(const RenderLayer*) const;
    276278   
     
    344346    TiledBacking* pageTiledBacking() const;
    345347   
    346     bool haveNonMainLayersWithTiledBacking() const { return m_layersWithTiledBackingCount; }
    347 
    348348    GraphicsLayerFactory* graphicsLayerFactory() const;
    349349    ScrollingCoordinator* scrollingCoordinator() const;
Note: See TracChangeset for help on using the changeset viewer.