summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.h')
-rw-r--r--chromium/third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.h b/chromium/third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.h
index 5ee66b49f46..407cdcbf311 100644
--- a/chromium/third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.h
+++ b/chromium/third_party/WebKit/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