diff options
Diffstat (limited to 'webkit/tools/test_shell/test_shell_webkit_init.cc')
-rw-r--r-- | webkit/tools/test_shell/test_shell_webkit_init.cc | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/webkit/tools/test_shell/test_shell_webkit_init.cc b/webkit/tools/test_shell/test_shell_webkit_init.cc index 647092f..5fd7761 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( |