diff options
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 |