summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h')
-rw-r--r--Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h b/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
index 5ffae8ebc..79708b396 100644
--- a/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
+++ b/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
@@ -33,33 +33,10 @@
#include "GraphicsContext.h"
-#if WEBKIT_USING_CG
-#include "LocalCurrentGraphicsContext.h"
-#elif WEBKIT_USING_SKIA
#include "PlatformContextSkia.h"
-#endif
namespace WebKit {
-#if WEBKIT_USING_CG
-
-class GraphicsContextBuilder {
-public:
- GraphicsContextBuilder(WebCanvas* canvas)
- : m_graphicsContext(canvas)
- , m_localContext(&m_graphicsContext)
- {
- }
-
- WebCore::GraphicsContext& context() { return m_graphicsContext; }
-
-private:
- WebCore::GraphicsContext m_graphicsContext;
- WebCore::LocalCurrentGraphicsContext m_localContext;
-};
-
-#elif WEBKIT_USING_SKIA
-
class GraphicsContextBuilder {
public:
GraphicsContextBuilder(WebCanvas* canvas)
@@ -75,10 +52,6 @@ private:
WebCore::GraphicsContext m_graphicsContext;
};
-#else
-#error "Need to define GraphicsContextBuilder!"
-#endif
-
} // namespace WebKit
#endif