| Index: Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
|
| diff --git a/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h b/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
|
| index 31247828882a885483f102966cfee8dc9d97c7f0..fd6168ea6a9a9f5b6546e1cece0caf6a5c1a88f6 100644
|
| --- a/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
|
| +++ b/Source/WebKit/chromium/src/painting/GraphicsContextBuilder.h
|
| @@ -40,15 +40,13 @@ namespace WebKit {
|
| class GraphicsContextBuilder {
|
| public:
|
| GraphicsContextBuilder(WebCanvas* canvas)
|
| - : m_platformContext(canvas)
|
| - , m_graphicsContext(&m_platformContext)
|
| + : m_graphicsContext(canvas)
|
| {
|
| }
|
|
|
| WebCore::GraphicsContext& context() { return m_graphicsContext; }
|
|
|
| private:
|
| - WebCore::PlatformContextSkia m_platformContext;
|
| WebCore::GraphicsContext m_graphicsContext;
|
| };
|
|
|
|
|