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

Unified Diff: content/browser/renderer_host/image_transport_factory.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/browser/renderer_host/image_transport_factory.cc
diff --git a/content/browser/renderer_host/image_transport_factory.cc b/content/browser/renderer_host/image_transport_factory.cc
index d51113dda34bfd241aa30032f05fe67d747fc5ad..ed510e75039cb4e037b6333b87413b41dddf2373 100644
--- a/content/browser/renderer_host/image_transport_factory.cc
+++ b/content/browser/renderer_host/image_transport_factory.cc
@@ -349,7 +349,7 @@ class GpuProcessTransportFactory : public ui::ContextFactory,
scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context(
new WebGraphicsContext3DCommandBufferImpl(
offscreen ? 0 : data->surface_id,
- GURL(),
+ GURL("GpuProcessTransportFactory::CreateContextCommon"),
factory,
data->swap_client->AsWeakPtr()));
if (!context->Initialize(
@@ -371,7 +371,7 @@ class GpuProcessTransportFactory : public ui::ContextFactory,
attrs.shareResources = true;
data->shared_context.reset(new WebGraphicsContext3DCommandBufferImpl(
0,
- GURL(),
+ GURL("GpuProcessTransportFactory::CreateSharedContext"),
factory,
data->swap_client->AsWeakPtr()));
if (!data->shared_context->Initialize(

Powered by Google App Engine
This is Rietveld 408576698