Index: webkit/tools/test_shell/test_shell_webkit_init.cc |
diff --git a/webkit/tools/test_shell/test_shell_webkit_init.cc b/webkit/tools/test_shell/test_shell_webkit_init.cc |
index 647092f7c8ab728659f8ee969500e3dc92f86312..5fd7761dd446c2b74dc7ddb5ff7c1d51600262ee 100644 |
--- a/webkit/tools/test_shell/test_shell_webkit_init.cc |
+++ b/webkit/tools/test_shell/test_shell_webkit_init.cc |
@@ -300,20 +300,11 @@ TestShellWebKitInit::sharedWorkerRepository() { |
return NULL; |
} |
-WebKit::WebGraphicsContext3D* TestShellWebKitInit::createGraphicsContext3D() { |
- return new webkit::gpu::WebGraphicsContext3DInProcessImpl( |
- gfx::kNullPluginWindow, NULL); |
-} |
- |
WebKit::WebGraphicsContext3D* |
TestShellWebKitInit::createOffscreenGraphicsContext3D( |
const WebKit::WebGraphicsContext3D::Attributes& attributes) { |
- scoped_ptr<WebGraphicsContext3D> context( |
- new webkit::gpu::WebGraphicsContext3DInProcessImpl( |
- gfx::kNullPluginWindow, NULL)); |
- if (!context->initialize(attributes, NULL, false)) |
- return NULL; |
- return context.release(); |
+ return webkit::gpu::WebGraphicsContext3DInProcessImpl::CreateForWebView( |
+ attributes, NULL, false); |
} |
void TestShellWebKitInit::GetPlugins( |