Index: content/common/webkitplatformsupport_impl.cc |
diff --git a/content/common/webkitplatformsupport_impl.cc b/content/common/webkitplatformsupport_impl.cc |
index f8700d718827bea930dedf631f67aa638e6ae96e..dd7a9fcb7961f2e9fc64ecae629d1b88ff6e5390 100644 |
--- a/content/common/webkitplatformsupport_impl.cc |
+++ b/content/common/webkitplatformsupport_impl.cc |
@@ -62,8 +62,10 @@ WebKitPlatformSupportImpl::createOffscreenGraphicsContext3D( |
return webkit::gpu::WebGraphicsContext3DInProcessImpl::CreateForWebView( |
attributes, false); |
} else { |
+ // Intentionally blank URL provided for offscreen contexts -- blank URLs are |
+ // ignored in the GPU process for crash reporting. |
return WebGraphicsContext3DCommandBufferImpl::CreateOffscreenContext( |
- GetGpuChannelHostFactory(), attributes); |
+ GetGpuChannelHostFactory(), attributes, GURL()); |
} |
} |