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

Unified Diff: webkit/support/webkit_support.cc

Issue 12908004: Lazy initialize WGC3DInProcessCommandBufferImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More cleanups Created 7 years, 9 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
Index: webkit/support/webkit_support.cc
diff --git a/webkit/support/webkit_support.cc b/webkit/support/webkit_support.cc
index d13a3be88948867bc6bcbeb442866f489e9870f9..26b6c3c7f3c0a161d43df0ff35530da852289000 100644
--- a/webkit/support/webkit_support.cc
+++ b/webkit/support/webkit_support.cc
@@ -495,16 +495,6 @@ void SetUpGLBindings(GLBindingPreferences bindingPref) {
}
}
-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,

Powered by Google App Engine
This is Rietveld 408576698