Index: Source/platform/graphics/UnacceleratedImageBufferSurface.h |
diff --git a/Source/platform/graphics/UnacceleratedImageBufferSurface.h b/Source/platform/graphics/UnacceleratedImageBufferSurface.h |
index 5ee66b49f46bd8623bc069959d716ced0a7b42df..407cdcbf31149beae3708c49d2048b569b1d86b1 100644 |
--- a/Source/platform/graphics/UnacceleratedImageBufferSurface.h |
+++ b/Source/platform/graphics/UnacceleratedImageBufferSurface.h |
@@ -32,7 +32,7 @@ |
#define UnacceleratedImageBufferSurface_h |
#include "platform/graphics/ImageBufferSurface.h" |
-#include "wtf/OwnPtr.h" |
+#include "wtf/RefPtr.h" |
namespace WebCore { |
@@ -46,7 +46,7 @@ public: |
virtual bool isValid() const OVERRIDE { return m_canvas; } |
private: |
- OwnPtr<SkCanvas> m_canvas; |
+ RefPtr<SkCanvas> m_canvas; |
}; |
} // namespace WebCore |