Index: Source/WebKit/chromium/tests/DrawingBufferTest.cpp |
diff --git a/Source/WebKit/chromium/tests/DrawingBufferTest.cpp b/Source/WebKit/chromium/tests/DrawingBufferTest.cpp |
index 8e5441b09d73548ec3d1892a68f5bc821ee3a1c2..b98211e9f246066f0c4b9a0bf07555d79178d5e4 100644 |
--- a/Source/WebKit/chromium/tests/DrawingBufferTest.cpp |
+++ b/Source/WebKit/chromium/tests/DrawingBufferTest.cpp |
@@ -33,7 +33,7 @@ |
#include "core/platform/graphics/gpu/DrawingBuffer.h" |
#include "FakeWebGraphicsContext3D.h" |
-#include "core/platform/chromium/support/GraphicsContext3DPrivate.h" |
+#include "core/platform/graphics/GraphicsContext3D.h" |
#include <public/Platform.h> |
#include <gmock/gmock.h> |
@@ -65,7 +65,7 @@ protected: |
virtual void SetUp() |
{ |
RefPtr<FakeContextEvictionManager> contextEvictionManager = adoptRef(new FakeContextEvictionManager()); |
- RefPtr<GraphicsContext3D> context = GraphicsContext3DPrivate::createGraphicsContextFromWebContext(adoptPtr(new FakeWebGraphicsContext3D)); |
+ RefPtr<GraphicsContext3D> context = GraphicsContext3D::createGraphicsContextFromWebContext(adoptPtr(new FakeWebGraphicsContext3D)); |
const IntSize size(100, 100); |
m_drawingBuffer = DrawingBuffer::create(context.get(), size, DrawingBuffer::Discard, contextEvictionManager.release()); |
} |