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

Unified Diff: webkit/support/webkit_support.cc

Issue 12908004: Lazy initialize WGC3DInProcessCommandBufferImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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..86b89525fc6d2d327f8d35be9ea2effa04a1833d 100644
--- a/webkit/support/webkit_support.cc
+++ b/webkit/support/webkit_support.cc
@@ -500,7 +500,7 @@ WebKit::WebGraphicsContext3D* CreateGraphicsContext3D(
WebKit::WebView* web_view) {
scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context(
new WebGraphicsContext3DInProcessCommandBufferImpl());
- if (!context->Initialize(attributes, NULL))
+ if (!context->Initialize(attributes))
return NULL;
return context.release();
}

Powered by Google App Engine
This is Rietveld 408576698