Index: content/renderer/render_thread_impl.cc |
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc |
index d1108ad251b48cc1970a04cd29a0b86cde901ebd..0f464db66d6bbc7d04f95b215caa7c05172b6f4f 100644 |
--- a/content/renderer/render_thread_impl.cc |
+++ b/content/renderer/render_thread_impl.cc |
@@ -743,7 +743,8 @@ RenderThreadImpl::GetGpuVDAContext3D() { |
if (!gpu_vda_context3d_.get()) { |
gpu_vda_context3d_.reset( |
WebGraphicsContext3DCommandBufferImpl::CreateOffscreenContext( |
- this, WebKit::WebGraphicsContext3D::Attributes())); |
+ this, WebKit::WebGraphicsContext3D::Attributes(), |
+ GURL("RenderThreadImpl::GetGpuVDAContext3D"))); |
brettw
2012/07/12 14:16:43
In the places you use these fake URLs, I'd prefer
jbates
2012/07/12 17:51:13
Done.
|
} |
return gpu_vda_context3d_->AsWeakPtr(); |
} |