Commit fde3e2f7 authored by fischman@chromium.org's avatar fischman@chromium.org

Don't try to set context callback if the context failed to be created.

BUG=142047

Review URL: https://chromiumcodereview.appspot.com/10828298

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151430 0039d316-1c4b-4281-b951-d872f2087c98
parent 0ab3e27a
...@@ -795,7 +795,8 @@ RenderThreadImpl::GetGpuVDAContext3D() { ...@@ -795,7 +795,8 @@ RenderThreadImpl::GetGpuVDAContext3D() {
WebGraphicsContext3DCommandBufferImpl::CreateOffscreenContext( WebGraphicsContext3DCommandBufferImpl::CreateOffscreenContext(
this, WebKit::WebGraphicsContext3D::Attributes(), this, WebKit::WebGraphicsContext3D::Attributes(),
GURL("chrome://gpu/RenderThreadImpl::GetGpuVDAContext3D"))); GURL("chrome://gpu/RenderThreadImpl::GetGpuVDAContext3D")));
gpu_vda_context3d_->setContextLostCallback(context_lost_cb_.get()); if (gpu_vda_context3d_.get())
gpu_vda_context3d_->setContextLostCallback(context_lost_cb_.get());
} }
return gpu_vda_context3d_.get(); return gpu_vda_context3d_.get();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment