Index: Source/platform/graphics/GraphicsLayer.h |
diff --git a/Source/platform/graphics/GraphicsLayer.h b/Source/platform/graphics/GraphicsLayer.h |
index 7124817f79325bda824c0480bd1aa23044e7b708..a6d173ed7d9d0c61189b1b27465aa33f43a9205d 100644 |
--- a/Source/platform/graphics/GraphicsLayer.h |
+++ b/Source/platform/graphics/GraphicsLayer.h |
@@ -232,7 +232,6 @@ public: |
// Layer contents |
void setContentsToImage(Image*); |
void setContentsToNinePatch(Image*, const IntRect& aperture); |
- void setContentsToSolidColor(const Color&); |
void setContentsToPlatformLayer(blink::WebLayer* layer) { setContentsTo(layer); } |
bool hasContentsLayer() const { return m_contentsLayer; } |
@@ -382,8 +381,6 @@ private: |
OwnPtr<blink::WebContentLayer> m_layer; |
OwnPtr<blink::WebImageLayer> m_imageLayer; |
OwnPtr<blink::WebNinePatchLayer> m_ninePatchLayer; |
- Color m_contentsSolidColor; |
- OwnPtr<blink::WebSolidColorLayer> m_solidColorLayer; |
blink::WebLayer* m_contentsLayer; |
// We don't have ownership of m_contentsLayer, but we do want to know if a given layer is the |
// same as our current layer in setContentsTo(). Since m_contentsLayer may be deleted at this point, |