| Index: trunk/src/webkit/support/webkit_support.cc
|
| ===================================================================
|
| --- trunk/src/webkit/support/webkit_support.cc (revision 189974)
|
| +++ trunk/src/webkit/support/webkit_support.cc (working copy)
|
| @@ -495,6 +495,16 @@
|
| }
|
| }
|
|
|
| +WebKit::WebGraphicsContext3D* CreateGraphicsContext3D(
|
| + const WebKit::WebGraphicsContext3D::Attributes& attributes,
|
| + WebKit::WebView* web_view) {
|
| + scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context(
|
| + new WebGraphicsContext3DInProcessCommandBufferImpl());
|
| + if (!context->Initialize(attributes, NULL))
|
| + return NULL;
|
| + return context.release();
|
| +}
|
| +
|
| WebKit::WebLayerTreeView* CreateLayerTreeView(
|
| LayerTreeViewType type,
|
| DRTLayerTreeViewClient* client,
|
|
|