diff options
author | Mike Reed <reed@google.com> | 2010-02-12 14:56:12 +0000 |
---|---|---|
committer | Mike Reed <reed@google.com> | 2010-02-12 14:56:12 +0000 |
commit | be24d84c76bb32c72d597fce1c9de599ced95565 (patch) | |
tree | 0696ad40c578a9484e47f3a88cb851c388f0226e /WebCore/platform/graphics/android/GraphicsLayerAndroid.h | |
parent | 410564b38963bd28cc3ef1fa1a0df89200963003 (diff) | |
download | external_webkit-be24d84c76bb32c72d597fce1c9de599ced95565.zip external_webkit-be24d84c76bb32c72d597fce1c9de599ced95565.tar.gz external_webkit-be24d84c76bb32c72d597fce1c9de599ced95565.tar.bz2 |
move children into SkLayer
make SkLayer inherit from SkRefCnt.h
Diffstat (limited to 'WebCore/platform/graphics/android/GraphicsLayerAndroid.h')
-rw-r--r-- | WebCore/platform/graphics/android/GraphicsLayerAndroid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/platform/graphics/android/GraphicsLayerAndroid.h b/WebCore/platform/graphics/android/GraphicsLayerAndroid.h index 591a261..8c80586 100644 --- a/WebCore/platform/graphics/android/GraphicsLayerAndroid.h +++ b/WebCore/platform/graphics/android/GraphicsLayerAndroid.h @@ -119,7 +119,7 @@ public: void notifyClientAnimationStarted(); void sendImmediateRepaint(); - LayerAndroid* contentLayer() { return m_contentLayer.get(); } + LayerAndroid* contentLayer() { return m_contentLayer; } static int instancesCount(); @@ -148,7 +148,7 @@ private: Vector<FloatRect> m_invalidatedRects; - RefPtr<LayerAndroid> m_contentLayer; + LayerAndroid* m_contentLayer; }; } // namespace WebCore |