| Index: content/common/gpu/gpu_channel.cc
|
| diff --git a/content/common/gpu/gpu_channel.cc b/content/common/gpu/gpu_channel.cc
|
| index 96c3553010c5a84133af5f625ad8c03200a06799..2ef95a71725fd0bff33160553d684b85f999d290 100644
|
| --- a/content/common/gpu/gpu_channel.cc
|
| +++ b/content/common/gpu/gpu_channel.cc
|
| @@ -128,7 +128,10 @@ void GpuChannel::AppendAllCommandBufferStubs(
|
| std::vector<GpuCommandBufferStubBase*>& stubs) {
|
| for (StubMap::Iterator<GpuCommandBufferStub> it(&stubs_);
|
| !it.IsAtEnd(); it.Advance()) {
|
| - stubs.push_back(it.GetCurrentValue());
|
| + GpuCommandBufferStub* stub = it.GetCurrentValue();
|
| + if (stub->is_ui_stub())
|
| + continue;
|
| + stubs.push_back(stub);
|
| }
|
| }
|
|
|
|
|