Title: [111245] trunk/Source/WebCore
- Revision
- 111245
- Author
- [email protected]
- Date
- 2012-03-19 14:24:50 -0700 (Mon, 19 Mar 2012)
Log Message
Remove unnecessary CALayer overrides from WebTileCacheLayer
https://bugs.webkit.org/show_bug.cgi?id=81562
Reviewed by Dan Bernstein.
* platform/graphics/ca/mac/TileCache.h:
(TileCache):
* platform/graphics/ca/mac/WebTileCacheLayer.mm:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (111244 => 111245)
--- trunk/Source/WebCore/ChangeLog 2012-03-19 21:18:18 UTC (rev 111244)
+++ trunk/Source/WebCore/ChangeLog 2012-03-19 21:24:50 UTC (rev 111245)
@@ -1,3 +1,14 @@
+2012-03-19 Anders Carlsson <[email protected]>
+
+ Remove unnecessary CALayer overrides from WebTileCacheLayer
+ https://bugs.webkit.org/show_bug.cgi?id=81562
+
+ Reviewed by Dan Bernstein.
+
+ * platform/graphics/ca/mac/TileCache.h:
+ (TileCache):
+ * platform/graphics/ca/mac/WebTileCacheLayer.mm:
+
2012-03-19 Emil A Eklund <[email protected]>
Correct usage of LayoutUnits in page code in preparation for turning on subpixel layout
Modified: trunk/Source/WebCore/platform/graphics/ca/mac/TileCache.h (111244 => 111245)
--- trunk/Source/WebCore/platform/graphics/ca/mac/TileCache.h 2012-03-19 21:18:18 UTC (rev 111244)
+++ trunk/Source/WebCore/platform/graphics/ca/mac/TileCache.h 2012-03-19 21:24:50 UTC (rev 111245)
@@ -65,10 +65,7 @@
CALayer *tileContainerLayer() const { return m_tileContainerLayer.get(); }
void visibleRectChanged(const IntRect&);
- float tileDebugBorderWidth() const { return m_tileDebugBorderWidth; }
void setTileDebugBorderWidth(float);
-
- CGColorRef tileDebugBorderColor() const { return m_tileDebugBorderColor.get(); }
void setTileDebugBorderColor(CGColorRef);
private:
Modified: trunk/Source/WebCore/platform/graphics/ca/mac/WebTileCacheLayer.mm (111244 => 111245)
--- trunk/Source/WebCore/platform/graphics/ca/mac/WebTileCacheLayer.mm 2012-03-19 21:18:18 UTC (rev 111244)
+++ trunk/Source/WebCore/platform/graphics/ca/mac/WebTileCacheLayer.mm 2012-03-19 21:24:50 UTC (rev 111245)
@@ -116,21 +116,11 @@
_tileCache->visibleRectChanged(visibleRect);
}
-- (CGColorRef)borderColor
-{
- return _tileCache->tileDebugBorderColor();
-}
-
- (void)setBorderColor:(CGColorRef)borderColor
{
_tileCache->setTileDebugBorderColor(borderColor);
}
-- (CGFloat)borderWidth
-{
- return _tileCache->tileDebugBorderWidth();
-}
-
- (void)setBorderWidth:(CGFloat)borderWidth
{
_tileCache->setTileDebugBorderWidth(borderWidth);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes