Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Unified Diff: Source/WebKit/chromium/tests/DrawingBufferTest.cpp

Issue 15301006: Merged GraphicsContext3DPrivate into GraphicsContext3D (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed ExtractWebGraphicsContext3D Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebKit/chromium/tests/Canvas2DLayerManagerTest.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « Source/WebKit/chromium/tests/Canvas2DLayerManagerTest.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698