summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorjbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-20 01:46:05 +0000
committerjbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-20 01:46:05 +0000
commit8a9e1a19230ab3711d141d4b969db81aa4d10ca5 (patch)
tree09f1aafa8350712845494a486b52334a0722022b /content
parentd331e3921d439eefdda0a6caa213a8ba4952fad9 (diff)
downloadchromium_src-8a9e1a19230ab3711d141d4b969db81aa4d10ca5.zip
chromium_src-8a9e1a19230ab3711d141d4b969db81aa4d10ca5.tar.gz
chromium_src-8a9e1a19230ab3711d141d4b969db81aa4d10ca5.tar.bz2
Initialize GPU Scheduler's command decoder pointer.
Was causing a crash on the lost device path. BUG=108117 TEST= Review URL: http://codereview.chromium.org/8992028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115061 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/common/gpu/gpu_command_buffer_stub.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
index 6e210e8..8c3ae57 100644
--- a/content/common/gpu/gpu_command_buffer_stub.cc
+++ b/content/common/gpu/gpu_command_buffer_stub.cc
@@ -180,7 +180,7 @@ void GpuCommandBufferStub::OnInitialize(
scheduler_.reset(new gpu::GpuScheduler(command_buffer_.get(),
decoder_.get(),
- NULL));
+ decoder_.get()));
decoder_->set_engine(scheduler_.get());