Changeset 183241 in webkit


Ignore:
Timestamp:
Apr 23, 2015, 9:05:58 PM (10 years ago)
Author:
Simon Fraser
Message:

Remove "layer" from GraphicsLayerCA member function names
https://bugs.webkit.org/show_bug.cgi?id=144139

Reviewed by Myles Maxfield.

Rename "updateLayer*" to "update*" in GraphicsLayerCA.

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::commitLayerChangesBeforeSublayers):
(WebCore::GraphicsLayerCA::updateNames):
(WebCore::GraphicsLayerCA::updateDrawsContent):
(WebCore::GraphicsLayerCA::updateLayerNames): Deleted.
(WebCore::GraphicsLayerCA::updateLayerDrawsContent): Deleted.

  • platform/graphics/ca/GraphicsLayerCA.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r183236 r183241  
     12015-04-23  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Remove "layer" from GraphicsLayerCA member function names
     4        https://bugs.webkit.org/show_bug.cgi?id=144139
     5
     6        Reviewed by Myles Maxfield.
     7
     8        Rename "updateLayer*" to "update*" in GraphicsLayerCA.
     9
     10        * platform/graphics/ca/GraphicsLayerCA.cpp:
     11        (WebCore::GraphicsLayerCA::commitLayerChangesBeforeSublayers):
     12        (WebCore::GraphicsLayerCA::updateNames):
     13        (WebCore::GraphicsLayerCA::updateDrawsContent):
     14        (WebCore::GraphicsLayerCA::updateLayerNames): Deleted.
     15        (WebCore::GraphicsLayerCA::updateLayerDrawsContent): Deleted.
     16        * platform/graphics/ca/GraphicsLayerCA.h:
     17
    1182015-04-23  Dan Bernstein  <mitz@apple.com>
    219
  • trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp

    r183196 r183241  
    13911391
    13921392    if (m_uncommittedChanges & DrawsContentChanged)
    1393         updateLayerDrawsContent();
     1393        updateDrawsContent();
    13941394
    13951395    if (m_uncommittedChanges & NameChanged)
    1396         updateLayerNames();
     1396        updateNames();
    13971397
    13981398    if (m_uncommittedChanges & ContentsImageChanged) // Needs to happen before ChildrenChanged
     
    15191519}
    15201520
    1521 void GraphicsLayerCA::updateLayerNames()
     1521void GraphicsLayerCA::updateNames()
    15221522{
    15231523    switch (structuralLayerPurpose()) {
     
    19171917}
    19181918
    1919 void GraphicsLayerCA::updateLayerDrawsContent()
     1919void GraphicsLayerCA::updateDrawsContent()
    19201920{
    19211921    if (m_drawsContent)
  • trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.h

    r183196 r183241  
    353353
    354354    // All these "update" methods will be called inside a BEGIN_BLOCK_OBJC_EXCEPTIONS/END_BLOCK_OBJC_EXCEPTIONS block.
    355     void updateLayerNames();
     355    void updateNames();
    356356    void updateSublayerList(bool maxLayerDepthReached = false);
    357357    void updateGeometry(float pixelAlignmentScale, const FloatPoint& positionRelativeToBase);
     
    363363    void updateBackfaceVisibility();
    364364    void updateStructuralLayer();
    365     void updateLayerDrawsContent();
     365    void updateDrawsContent();
    366366    void updateBackgroundColor();
    367367
Note: See TracChangeset for help on using the changeset viewer.