Changeset 183241 in webkit
- Timestamp:
- Apr 23, 2015, 9:05:58 PM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r183236 r183241 1 2015-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 1 18 2015-04-23 Dan Bernstein <mitz@apple.com> 2 19 -
trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp
r183196 r183241 1391 1391 1392 1392 if (m_uncommittedChanges & DrawsContentChanged) 1393 update LayerDrawsContent();1393 updateDrawsContent(); 1394 1394 1395 1395 if (m_uncommittedChanges & NameChanged) 1396 update LayerNames();1396 updateNames(); 1397 1397 1398 1398 if (m_uncommittedChanges & ContentsImageChanged) // Needs to happen before ChildrenChanged … … 1519 1519 } 1520 1520 1521 void GraphicsLayerCA::update LayerNames()1521 void GraphicsLayerCA::updateNames() 1522 1522 { 1523 1523 switch (structuralLayerPurpose()) { … … 1917 1917 } 1918 1918 1919 void GraphicsLayerCA::update LayerDrawsContent()1919 void GraphicsLayerCA::updateDrawsContent() 1920 1920 { 1921 1921 if (m_drawsContent) -
trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.h
r183196 r183241 353 353 354 354 // All these "update" methods will be called inside a BEGIN_BLOCK_OBJC_EXCEPTIONS/END_BLOCK_OBJC_EXCEPTIONS block. 355 void update LayerNames();355 void updateNames(); 356 356 void updateSublayerList(bool maxLayerDepthReached = false); 357 357 void updateGeometry(float pixelAlignmentScale, const FloatPoint& positionRelativeToBase); … … 363 363 void updateBackfaceVisibility(); 364 364 void updateStructuralLayer(); 365 void update LayerDrawsContent();365 void updateDrawsContent(); 366 366 void updateBackgroundColor(); 367 367
Note:
See TracChangeset
for help on using the changeset viewer.