Index: Source/platform/graphics/GraphicsLayer.h |
diff --git a/Source/platform/graphics/GraphicsLayer.h b/Source/platform/graphics/GraphicsLayer.h |
index 9dec5f5369b27cac41d67028dcd54e97d5921d1a..a04c02f2a17aeea742e716c640936f6442596ca2 100644 |
--- a/Source/platform/graphics/GraphicsLayer.h |
+++ b/Source/platform/graphics/GraphicsLayer.h |
@@ -213,7 +213,6 @@ public: |
// Layer contents |
void setContentsToImage(Image*); |
- void setContentsToNinePatch(Image*, const IntRect& aperture); |
void setContentsToPlatformLayer(WebLayer* layer) { setContentsTo(layer); } |
bool hasContentsLayer() const { return m_contentsLayer; } |
@@ -353,7 +352,6 @@ private: |
OwnPtr<WebContentLayer> m_layer; |
OwnPtr<WebImageLayer> m_imageLayer; |
- OwnPtr<WebNinePatchLayer> m_ninePatchLayer; |
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, |