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

Unified Diff: content/renderer/render_thread_impl.cc

Issue 10695133: Improve GPU process URL crash reporting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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: content/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 19e02596992b6b79122616234bda21a0afe0ba02..8e1bf6eee5320a7fc81c667b2c78c844c0c04d30 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -744,7 +744,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")));
}
return gpu_vda_context3d_->AsWeakPtr();
}

Powered by Google App Engine
This is Rietveld 408576698