summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/chromium/public/WebCanvas.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/public/WebCanvas.h')
-rw-r--r--Source/WebKit/chromium/public/WebCanvas.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit/chromium/public/WebCanvas.h b/Source/WebKit/chromium/public/WebCanvas.h
index 4675487..4cf729e 100644
--- a/Source/WebKit/chromium/public/WebCanvas.h
+++ b/Source/WebKit/chromium/public/WebCanvas.h
@@ -34,7 +34,7 @@
#include "WebCommon.h"
#if WEBKIT_USING_SKIA
-namespace skia { class PlatformCanvas; }
+class SkCanvas;
#elif WEBKIT_USING_CG
struct CGContext;
#endif
@@ -42,7 +42,7 @@ struct CGContext;
namespace WebKit {
#if WEBKIT_USING_SKIA
-typedef skia::PlatformCanvas WebCanvas;
+typedef SkCanvas WebCanvas;
#elif WEBKIT_USING_CG
typedef struct CGContext WebCanvas;
#else